Load solver from string (not supported).
(s: str)
| 664 | |
| 665 | @staticmethod |
| 666 | def from_string(s: str) -> Solver: |
| 667 | """Load solver from string (not supported).""" |
| 668 | raise NotImplementedError( |
| 669 | "from_string not supported: Lean uses its own syntax, not SMT-LIB2" |
| 670 | ) |
| 671 | |
| 672 | def cube(self, vars: Any = None) -> list: |
| 673 | """Generate cubes (not supported).""" |
no outgoing calls