summaryrefslogtreecommitdiff
path: root/test/regress/regress0/options/set-and-get-options.smt2
blob: 24e05ec2a91d2ba6b3cf0598492036f14a00ad3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; EXPECT: ((* 2))
; EXPECT: ((check-sat 1) (* 1))
; EXPECT: true
; EXPECT: false
; EXPECT: 15
; EXPECT: none

(get-option :command-verbosity)
(set-option :command-verbosity (* 1))
(set-option :command-verbosity (check-sat 1))
(get-option :command-verbosity)
(set-option :check-models true)
(get-option :check-models)
(set-option :check-models false)
(get-option :check-models)
(set-option :dag-thresh 15)
(get-option :dag-thresh)
(set-option :simplification none)
(get-option :simplification)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback