NewVariableBound creates a bound from a variable.
(v Variable)
| 183 | |
| 184 | // NewVariableBound creates a bound from a variable. |
| 185 | func NewVariableBound(v Variable) TemporalBound { |
| 186 | return TemporalBound{ |
| 187 | Type: VariableBound, |
| 188 | Variable: v, |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | // NegativeInfinity returns a bound representing negative infinity. |
| 193 | func NegativeInfinity() TemporalBound { |
no outgoing calls