Hexaly Optimizer 13.0¶
Modeling operators¶
Hull¶
The smallest interval including all intervals given in operands. This operator accepts n operands of type interval, or an unique operator of type array of intervals. The operator returns an interval with a start equal to the smallest start of its operands, and an end equal to the largest end of its operands. Void intervals given in operands will be ignored.
API Changes¶
LSP¶
Added new methods
LSCollection.isUndefined()
andLSArray.isUndefined()
to test if the collection or the array is undefined.
Python¶
Added
LSOperator.HULL
operator.Added
LSModel.hull
to create hull expressions.Added new methods
LSCollection.is_undefined()
andLSArray.is_undefined()
to test if the collection or the array is undefined.
C++¶
Added
O_Hull
operator.Added
LSModel::hull()
to create hull expressions.Added new methods
LSCollection::isUndefined()
andLSArray::isUndefined()
to test if the collection or the array is undefined.
C#¶
Added
LSOperator.Hull
operator.Added
LSModel.Hull
to create hull expressions.Added new methods
LSCollection.IsUndefined
andLSArray.IsUndefined
to test if the collection or the array is undefined.
Java¶
Added
LSOperator.Hull
operator.Added
LSModel.Hull
to create hull expressions.Added new methods
LSCollection.isUndefined
andLSArray.isUndefined
to test if the collection or the array is undefined.