aboutsummaryrefslogtreecommitdiffstats
path: root/examples/sym_zeq.v
blob: b940490c8223d4a90a12403c3da398d65cbf9da4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Require Import SMTCoq.
Require Import Bool.
Local Open Scope int63_scope.

Open Scope Z_scope.

Parameter h : Z -> Z -> Z.
Axiom h_Sm_n : forall x y, h (x+1) y =? h x y.

Lemma h_1_0 :
  h 1 0 =? h 0 0.
Proof. verit_base h_Sm_n; vauto. Qed.