Enum ModelBehavior
Describes the behavior of a model when adding constraints
Namespace: OPTANO.Modeling.Optimization.Configuration
Assembly: Optimization.Configuration.dll
Syntax
[DataContract]
public enum ModelBehavior : byte
Fields
Name | Description |
---|---|
Auto | Variables in a constraint will be added to the model automatically, as soon as the constraint is added to the model. |
Lazy | Variables in constraints will be added automatically in a batch operation, just before the model is converted and passed to the solver. |
Manual | Variables in a constraint will not be added to the model, you need to do this manually beforehand |