returnPointBarriers property

bool returnPointBarriers

Whether or not to return the point barriers used in the closest facility task.

Implementation

bool get returnPointBarriers {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ClosestFacilityParameters_getReturnPointBarriers(
      _handle,
      errorHandler,
    );
  });
}
void returnPointBarriers=(bool value)

Implementation

set returnPointBarriers(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_ClosestFacilityParameters_setReturnPointBarriers(
      _handle,
      value,
      errorHandler,
    );
  });
}