(self)
| 1922 | assert BitVecSort(8) != BitVecSort(16) |
| 1923 | |
| 1924 | def test_sort_repr(self): |
| 1925 | assert repr(IntSort()) == "Int" |
| 1926 | assert repr(BoolSort()) == "Prop" # Lean uses Prop for Bool |
| 1927 | assert repr(NatSort()) == "Nat" |
| 1928 | assert repr(RealSort()) == "Real" |
| 1929 | assert repr(StringSort()) == "String" |
| 1930 | |
| 1931 | def test_bv_sort_repr(self): |
| 1932 | assert "8" in repr(BitVecSort(8)) |
nothing calls this directly
no test coverage detected