src/HOL/SMT/Examples/cert/z3_linarith_21
author Christian Urban <urbanc@in.tum.de>
Fri, 20 Nov 2009 00:54:20 +0100
changeset 33773 ccef2e6d8c21
parent 33748 dd5513734567
permissions -rw-r--r--
removed fixme - quick-and-dirty flag is appropriate
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
)