src/HOL/SMT/Examples/cert/z3_linarith_21
author wenzelm
Fri, 20 Nov 2009 15:48:36 +0100
changeset 33822 e332b08bf0f3
parent 33748 dd5513734567
permissions -rw-r--r--
provide standard isabelle make targets; slightly more accurate dependencies;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33748
dd5513734567 added arithmetic example using div and mod
boehmes
parents:
diff changeset
     1
(benchmark Isabelle
dd5513734567 added arithmetic example using div and mod
boehmes
parents:
diff changeset
     2
:extrafuns (
dd5513734567 added arithmetic example using div and mod
boehmes
parents:
diff changeset
     3
  (uf_2 Int)
dd5513734567 added arithmetic example using div and mod
boehmes
parents:
diff changeset
     4
  (uf_1 Int)
dd5513734567 added arithmetic example using div and mod
boehmes
parents:
diff changeset
     5
 )
dd5513734567 added arithmetic example using div and mod
boehmes
parents:
diff changeset
     6
:assumption (= (mod (+ uf_1 uf_2) 2) 0)
dd5513734567 added arithmetic example using div and mod
boehmes
parents:
diff changeset
     7
:assumption (= (mod uf_1 4) 3)
dd5513734567 added arithmetic example using div and mod
boehmes
parents:
diff changeset
     8
:assumption (not (and (= (mod uf_1 2) 1) (= (mod uf_2 2) 1)))
dd5513734567 added arithmetic example using div and mod
boehmes
parents:
diff changeset
     9
:formula true
dd5513734567 added arithmetic example using div and mod
boehmes
parents:
diff changeset
    10
)