aboutsummaryrefslogtreecommitdiffstats
path: root/examples/Non_terminating.v
blob: 087301acbf3f2f8c6c34eb4dba0dadd5b8902fb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
Require Import SMTCoq.

Parameter g : Z -> Z.

Axiom g_2_linear : forall x, Zeq_bool (g (x + 1)) ((g x) + 2).

Lemma apply_lemma_multiple :
  forall x y, Zeq_bool (g (x + y)) ((g x) + y * 2).

Proof.
  verit g_2_linear.