File size: 1,286 Bytes
3bdb76c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
(set-logic SLIA)

 

(synth-fun f ((name String)) String

    ((Start String (ntString))

     (ntString String (name " " "(" ")" "-"

                       (str.++ ntString ntString)

                       (str.replace ntString ntString ntString)

                       (str.at ntString ntInt)

                       (int.to.str ntInt)

                       (str.substr ntString ntInt ntInt)))

      (ntInt Int (0 1 2 3 4 5

                  (+ 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)))))





(declare-var name String)



(constraint (= (f "938-242-504") "(938) 242-504"))

(constraint (= (f "308-916-545") "(308) 916-545"))

(constraint (= (f "623-599-749") "(623) 599-749"))

(constraint (= (f "981-424-843") "(981) 424-843"))

(constraint (= (f "118-980-214") "(118) 980-214"))

(constraint (= (f "244-655-094") "(244) 655-094"))

(constraint (= (f "830-941-991") "(830) 941-991"))



(check-synth)