(self)
| 208 | return p |
| 209 | |
| 210 | def txt(self) -> str: |
| 211 | return ( |
| 212 | '; '.join([c.txt() for c in self.clauses]) + ' ? ' + self.goal.txt() |
| 213 | if self.goal |
| 214 | else '' |
| 215 | ) |
| 216 | |
| 217 | def setup_str_from_problem(self, definitions: list[Definition]) -> str: |
| 218 | """Construct the <theorem_premises> string from Problem object.""" |