Returns the parameters in the problem.
(self)
| 213 | return self.args[0].variables() |
| 214 | |
| 215 | def parameters(self): |
| 216 | """Returns the parameters in the problem. |
| 217 | """ |
| 218 | return self.args[0].parameters() |
| 219 | |
| 220 | def constants(self) -> list[Constant]: |
| 221 | """Returns the constants in the problem. |
no outgoing calls