Load solver from file (not supported).
(filename: str)
| 659 | |
| 660 | @staticmethod |
| 661 | def from_file(filename: str) -> Solver: |
| 662 | """Load solver from file (not supported).""" |
| 663 | raise NotImplementedError("from_file not supported: Lean uses its own syntax, not SMT-LIB2") |
| 664 | |
| 665 | @staticmethod |
| 666 | def from_string(s: str) -> Solver: |
no outgoing calls