lean4-htt/tests/lean/run/dvd_simproc.lean
Leonardo de Moura b26b781992
feat: simprocs for Int and Nat divides predicates (#7078)
This PR implements simprocs for `Int` and `Nat` divides predicates.
2025-02-14 05:43:38 +00:00

15 lines
469 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

example : 2 6 := by simp
example : 2 0 := by simp
example : 3 6 := by simp
example : ¬ 5 6 := by simp
example : ¬ 6 11 := by simp
example : ¬ 0 6 := by simp
example : 1 6 := by simp
example : (2:Int) 0 := by simp
example : (2:Int) 6 := by simp
example : (3:Int) 6 := by simp
example : ¬ (5:Int) 6 := by simp
example : ¬ (6:Int) 11 := by simp
example : ¬ (0:Int) 6 := by simp
example : (1:Int) 6 := by simp