File size: 3,867 Bytes
619ff5b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
(set-logic SLIA)

 

(synth-fun f ((firstname String) (lastname String)) String

    ((Start String (ntString))

     (ntString String (firstname lastname " "

                       (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

                  (+ 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 "Launa" "Withers") "Launa Withers"))

(constraint (= (f "Lakenya" "Edison") "Lakenya Edison"))

(constraint (= (f "Brendan" "Hage") "Brendan Hage"))

(constraint (= (f "Bradford" "Lango") "Bradford Lango"))

(constraint (= (f "Rudolf" "Akiyama") "Rudolf Akiyama"))

(constraint (= (f "Lara" "Constable") "Lara Constable"))

(constraint (= (f "Madelaine" "Ghoston") "Madelaine Ghoston"))

(constraint (= (f "Salley" "Hornak") "Salley Hornak"))

(constraint (= (f "Micha" "Junkin") "Micha Junkin"))

(constraint (= (f "Teddy" "Bobo") "Teddy Bobo"))

(constraint (= (f "Coralee" "Scalia") "Coralee Scalia"))

(constraint (= (f "Jeff" "Quashie") "Jeff Quashie"))

(constraint (= (f "Vena" "Babiarz") "Vena Babiarz"))

(constraint (= (f "Karrie" "Lain") "Karrie Lain"))

(constraint (= (f "Tobias" "Dermody") "Tobias Dermody"))

(constraint (= (f "Celsa" "Hopkins") "Celsa Hopkins"))

(constraint (= (f "Kimberley" "Halpern") "Kimberley Halpern"))

(constraint (= (f "Phillip" "Rowden") "Phillip Rowden"))

(constraint (= (f "Elias" "Neil") "Elias Neil"))

(constraint (= (f "Lashanda" "Cortes") "Lashanda Cortes"))

(constraint (= (f "Mackenzie" "Spell") "Mackenzie Spell"))

(constraint (= (f "Kathlyn" "Eccleston") "Kathlyn Eccleston"))

(constraint (= (f "Georgina" "Brescia") "Georgina Brescia"))

(constraint (= (f "Beata" "Miah") "Beata Miah"))

(constraint (= (f "Desiree" "Seamons") "Desiree Seamons"))

(constraint (= (f "Jeanice" "Soderstrom") "Jeanice Soderstrom"))

(constraint (= (f "Mariel" "Jurgens") "Mariel Jurgens"))

(constraint (= (f "Alida" "Bogle") "Alida Bogle"))

(constraint (= (f "Jacqualine" "Olague") "Jacqualine Olague"))

(constraint (= (f "Joaquin" "Clasen") "Joaquin Clasen"))

(constraint (= (f "Samuel" "Richert") "Samuel Richert"))

(constraint (= (f "Malissa" "Marcus") "Malissa Marcus"))

(constraint (= (f "Alaina" "Partida") "Alaina Partida"))

(constraint (= (f "Trinidad" "Mulloy") "Trinidad Mulloy"))

(constraint (= (f "Carlene" "Garrard") "Carlene Garrard"))

(constraint (= (f "Melodi" "Chism") "Melodi Chism"))

(constraint (= (f "Bess" "Chilcott") "Bess Chilcott"))

(constraint (= (f "Chong" "Aylward") "Chong Aylward"))

(constraint (= (f "Jani" "Ramthun") "Jani Ramthun"))

(constraint (= (f "Jacquiline" "Heintz") "Jacquiline Heintz"))

(constraint (= (f "Hayley" "Marquess") "Hayley Marquess"))

(constraint (= (f "Andria" "Spagnoli") "Andria Spagnoli"))

(constraint (= (f "Irwin" "Covelli") "Irwin Covelli"))

(constraint (= (f "Gertude" "Montiel") "Gertude Montiel"))

(constraint (= (f "Stefany" "Reily") "Stefany Reily"))

(constraint (= (f "Rae" "Mcgaughey") "Rae Mcgaughey"))

(constraint (= (f "Cruz" "Latimore") "Cruz Latimore"))

(constraint (= (f "Maryann" "Casler") "Maryann Casler"))

(constraint (= (f "Annalisa" "Gregori") "Annalisa Gregori"))

(constraint (= (f "Jenee" "Pannell") "Jenee Pannell"))

 

(check-synth)