returnRoutes property

bool returnRoutes

Whether or not return routes are to be returned.

Enabled by default. Can be returned in the event of a successful solve.

Implementation

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

Implementation

set returnRoutes(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_ClosestFacilityParameters_setReturnRoutes(
      _handle,
      value,
      errorHandler,
    );
  });
}