Interface: VariableBounds
@kortexya/reasoninglayer / Optimize / VariableBounds
Interface: VariableBounds
Defined in: src/types/optimize.ts:38
Bounds for a single decision variable.
Example
// 0 <= x <= 100const bounds: VariableBounds = { min: 0, max: 100 };Properties
max?
optionalmax:number
Defined in: src/types/optimize.ts:42
Upper bound (default: unbounded above).
min?
optionalmin:number
Defined in: src/types/optimize.ts:40
Lower bound (default: unbounded below).