We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67d9d9d commit 2bf9130Copy full SHA for 2bf9130
tests/lean/run/grind_cutsat_nat_eq.lean
@@ -121,3 +121,21 @@ set_option trace.grind.cutsat.model true in
121
example (x y : Nat) : x = y + 3 → y > 0 → False := by
122
fail_if_success grind
123
sorry
124
+
125
+example (a b : Nat) : a = a + b - b := by
126
+ grind
127
128
+example (a b : Int) : a = a + b - b := by
129
130
131
+example (a b : Nat) : a = a + 2^b - 2^b := by
132
133
134
+example (a b : Nat) : 2^a = 2^a + b - b := by
135
136
137
+example (a b c : Nat) : c^a = c^a + b - b := by
138
139
140
+example (n : Nat) : 0 ≤ 2 ^ n := by
141
0 commit comments