test(tests/lua): more to_ceqs tests
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
c651d3ea2d
commit
f67b5c4d00
1 changed files with 52 additions and 0 deletions
|
@ -31,4 +31,56 @@ test_ceq("Ax2", 1)
|
|||
test_ceq("Ax3", 4)
|
||||
test_ceq("Ax4", 0)
|
||||
test_ceq("Ax5", 1)
|
||||
-- test_ceq("eta", 1)
|
||||
test_ceq("not_not_eq", 1)
|
||||
test_ceq("or_comm", 1)
|
||||
test_ceq("or_assoc", 1)
|
||||
test_ceq("or_id", 1)
|
||||
test_ceq("or_falsel", 1)
|
||||
test_ceq("or_falser", 1)
|
||||
test_ceq("or_truel", 1)
|
||||
test_ceq("or_truer", 1)
|
||||
test_ceq("or_tauto", 1)
|
||||
test_ceq("and_comm", 1)
|
||||
test_ceq("and_assoc", 1)
|
||||
test_ceq("and_id", 1)
|
||||
test_ceq("and_falsel", 1)
|
||||
test_ceq("and_falser", 1)
|
||||
test_ceq("and_truel", 1)
|
||||
test_ceq("and_truer", 1)
|
||||
test_ceq("and_absurd", 1)
|
||||
test_ceq("imp_truer", 1)
|
||||
test_ceq("imp_truel", 1)
|
||||
test_ceq("imp_falser", 1)
|
||||
test_ceq("imp_falsel", 1)
|
||||
test_ceq("not_and", 1)
|
||||
test_ceq("not_or", 1)
|
||||
test_ceq("not_iff", 1)
|
||||
test_ceq("not_implies", 1)
|
||||
test_ceq("or_left_comm", 1)
|
||||
test_ceq("and_left_comm", 1)
|
||||
test_ceq("forall_or_distributer", 1)
|
||||
test_ceq("forall_or_distributel", 1)
|
||||
test_ceq("forall_and_distribute", 1)
|
||||
test_ceq("exists_and_distributer", 1)
|
||||
test_ceq("exists_and_distributel", 1)
|
||||
test_ceq("exists_or_distribute", 1)
|
||||
test_ceq({"Nat", "add_zeror"}, 1)
|
||||
test_ceq({"Nat", "add_zerol"}, 1)
|
||||
test_ceq({"Nat", "add_comm"}, 1)
|
||||
test_ceq({"Nat", "add_assoc"}, 1)
|
||||
test_ceq({"Nat", "mul_zerol"}, 1)
|
||||
test_ceq({"Nat", "mul_zeror"}, 1)
|
||||
test_ceq({"Nat", "mul_onel"}, 1)
|
||||
test_ceq({"Nat", "mul_oner"}, 1)
|
||||
test_ceq({"Nat", "mul_comm"}, 1)
|
||||
test_ceq({"Nat", "mul_assoc"}, 1)
|
||||
test_ceq({"Nat", "add_comm"}, 1)
|
||||
test_ceq({"Nat", "add_assoc"}, 1)
|
||||
test_ceq({"Nat", "distributer"}, 1)
|
||||
test_ceq({"Nat", "distributel"}, 1)
|
||||
test_ceq({"Nat", "le_refl"}, 1)
|
||||
test_ceq({"Nat", "le_zero"}, 1)
|
||||
test_ceq({"Nat", "not_lt_0"}, 1)
|
||||
test_ceq({"Nat", "lt_nrefl"}, 1)
|
||||
|
||||
|
|
Loading…
Reference in a new issue