summaryrefslogtreecommitdiff
path: root/test/regress/regress0/smt2output.smt2
blob: 7f7e3dbf2d65c5d6803e2e5c31f0b852121261e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; This test checks the correct output behavior of SMT-LIBv2 symbols
; (sometimes they have to be |quoted| with pipes).
;
; COMMAND-LINE: -qm
(declare-fun |toto| () Bool)
(declare-fun |to to| () Bool)
(assert (and toto |to to|))
(check-sat)
; EXPECT: sat
(get-model)
; EXPECT: (
; EXPECT: (define-fun toto () Bool true)
; EXPECT: (define-fun |to to| () Bool true)
; EXPECT: )
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback