summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sygus/strings-small.sy
blob: 7d976ff39bdc1f6ffc22ace6a7bb2c6b433819b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
; EXPECT: unsat
; COMMAND-LINE: --sygus-out=status
(set-logic SLIA)
(synth-fun f ((firstname String) (lastname String)) String
((Start String (ntString))

(ntString String (
firstname 
lastname 
" "
(str.++ ntString ntString)))

(ntInt Int (
0 
1 
2
(+ ntInt ntInt)
(- ntInt ntInt)
(str.len ntString)
(str.to.int ntString)
(str.indexof ntString ntString ntInt)))

(ntBool Bool (
true 
false
(str.prefixof ntString ntString)
(str.suffixof ntString ntString)
(str.contains ntString ntString)))

))

(constraint (= (f "Nancy" "FreeHafer") "Nancy FreeHafer"))

(check-synth)

generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback