Set the value of a decision variable. Args: value: Value to assign to the decision variable.
(
self,
value: object,
)
| 68 | pass |
| 69 | |
| 70 | def set( |
| 71 | self, |
| 72 | value: object, |
| 73 | ) -> None: |
| 74 | """Set the value of a decision variable. |
| 75 | |
| 76 | Args: |
| 77 | value: Value to assign to the decision variable. |
| 78 | """ |
| 79 | self.value = value |
| 80 | |
| 81 | def get(self, **kwargs: Any) -> object: |
| 82 | """Get the value of a decision variable. |