jijmodeling.generation.value
Module Contents
Functions
Name |
Description |
|---|---|
at_least(lb) returns a closed interval $[\mathtt{lb}, \infty)$; that is, $x \in \mathtt{at\_least(lb… |
|
at_most(ub) returns a closed interval $(-\infty, \mathtt{ub}]$; that is, $x \in \mathtt{at\_most(ub)… |
|
closed(lb, ub) returns a closed interval $[\mathtt{lb}, \mathtt{ub}]$; that is, $x \in \mathtt{close… |
|
closed_open(lb, ub) returns a upper half-open interval $[\mathtt{lb}, \mathtt{ub})$; that is, $x \in… |
|
greater_than(lb) returns an open interval $(\mathtt{lb}, \infty)$; that is, $x \in \mathtt{greater\_… |
|
less_than(ub) returns an open interval $(-\infty, \mathtt{ub})$; that is, $x \in \mathtt{less\_than(… |
|
open(lb, ub) returns an open interval $(\mathtt{lb}, \mathtt{ub})$; that is, $x \in \mathtt{open(lb,… |
|
open_closed(lb, ub) returns a lower half-open interval $(\mathtt{lb}, \mathtt{ub}]$; that is, $x \in… |
Functions
- at_least(arg: float) str | dict[str, float] | Literal["Unbounded"]
at_least(lb)returns a closed interval ; that is, .
- at_most(bd: float) str | dict[str, float] | Literal["Unbounded"]
at_most(ub)returns a closed interval ; that is, .
- closed(lb: float, ub: float) str | dict[str, float] | Literal["Unbounded"]
closed(lb, ub)returns a closed interval ; that is,
- closed_open(lb: float, ub: float) str | dict[str, float] | Literal["Unbounded"]
closed_open(lb, ub)returns a upper half-open interval ; that is, . For size range, it is same as the python’s standardrange(lb, ub)function.
- greater_than(arg: float) str | dict[str, float] | Literal["Unbounded"]
greater_than(lb)returns an open interval ; that is, .
- less_than(bd: float) str | dict[str, float] | Literal["Unbounded"]
less_than(ub)returns an open interval ; that is, . For size range, it is same as the python’s standardrange(ub)function.