summaryrefslogtreecommitdiff
path: root/test/regress/regress1/push-pop/bug-fmf-fun-skolem.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress1/push-pop/bug-fmf-fun-skolem.smt2')
-rw-r--r--test/regress/regress1/push-pop/bug-fmf-fun-skolem.smt22
1 files changed, 1 insertions, 1 deletions
diff --git a/test/regress/regress1/push-pop/bug-fmf-fun-skolem.smt2 b/test/regress/regress1/push-pop/bug-fmf-fun-skolem.smt2
index 01a274e8a..e483abcb8 100644
--- a/test/regress/regress1/push-pop/bug-fmf-fun-skolem.smt2
+++ b/test/regress/regress1/push-pop/bug-fmf-fun-skolem.smt2
@@ -1,5 +1,5 @@
; COMMAND-LINE: --incremental --fmf-fun
-(set-logic ALL_SUPPORTED)
+(set-logic ALL)
(declare-datatypes ((Lst 0)) (((cons (head Int) (tail Lst)) (nil))))
(define-fun-rec sum ((l Lst)) Int (ite ((_ is nil) l) 0 (+ (head l) (sum (tail l)))))
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback