-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcspExamples.py
executable file
·152 lines (118 loc) · 5.67 KB
/
cspExamples.py
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# cspExamples.py - Example CSPs
# AIFCA Python3 code Version 0.7.7 Documentation at http://aipython.org
# Artificial Intelligence: Foundations of Computational Agents
# http://artint.info
# Copyright David L Poole and Alan K Mackworth 2017.
# This work is licensed under a Creative Commons
# Attribution-NonCommercial-ShareAlike 4.0 International License.
# See: http://creativecommons.org/licenses/by-nc-sa/4.0/deed.en
from operator import lt, ne, eq, gt
from cspProblem import CSP, Constraint
def ne_(val):
"""not equal value"""
# nev = lambda x: x != val # alternative definition
# nev = partial(neq,val) # another alternative definition
def nev(x):
return val != x
nev.__name__ = str(val) + "!=" # name of the function
return nev
def is_(val):
"""is a value"""
# isv = lambda x: x == val # alternative definition
# isv = partial(eq,val) # another alternative definition
def isv(x):
return val == x
isv.__name__ = str(val) + "=="
return isv
csp0 = CSP({'X': {1, 2, 3}, 'Y': {1, 2, 3}, 'Z': {1, 2, 3}},
[Constraint(('X', 'Y'), lt),
Constraint(('Y', 'Z'), lt)])
C0 = Constraint(('A', 'B'), lt)
C1 = Constraint(('B',), ne_(2))
C2 = Constraint(('B', 'C'), lt)
csp1 = CSP({'A': {1, 2, 3, 4}, 'B': {1, 2, 3, 4}, 'C': {1, 2, 3, 4}},
[C0, C1, C2])
csp2 = CSP({'A': {1, 2, 3, 4}, 'B': {1, 2, 3, 4}, 'C': {1, 2, 3, 4},
'D': {1, 2, 3, 4}, 'E': {1, 2, 3, 4}},
[Constraint(('B',), ne_(3)),
Constraint(('C',), ne_(2)),
Constraint(('A', 'B'), ne),
Constraint(('B', 'C'), ne),
Constraint(('C', 'D'), lt),
Constraint(('A', 'D'), eq),
Constraint(('A', 'E'), gt),
Constraint(('B', 'E'), gt),
Constraint(('C', 'E'), gt),
Constraint(('D', 'E'), gt),
Constraint(('B', 'D'), ne)])
csp3 = CSP({'A': {1, 2, 3, 4}, 'B': {1, 2, 3, 4}, 'C': {1, 2, 3, 4},
'D': {1, 2, 3, 4}, 'E': {1, 2, 3, 4}},
[Constraint(('A', 'B'), ne),
Constraint(('A', 'D'), lt),
Constraint(('A', 'E'), lambda a, e: (a - e) % 2 == 1), # A-E is odd
Constraint(('B', 'E'), lt),
Constraint(('D', 'C'), lt),
Constraint(('C', 'E'), ne),
Constraint(('D', 'E'), ne)])
def adjacent(x, y):
"""True when x and y are adjacent numbers"""
return abs(x - y) == 1
csp4 = CSP({'A': {1, 2, 3, 4, 5}, 'B': {1, 2, 3, 4, 5}, 'C': {1, 2, 3, 4, 5},
'D': {1, 2, 3, 4, 5}, 'E': {1, 2, 3, 4, 5}},
[Constraint(('A', 'B'), adjacent),
Constraint(('B', 'C'), adjacent),
Constraint(('C', 'D'), adjacent),
Constraint(('D', 'E'), adjacent),
Constraint(('A', 'C'), ne),
Constraint(('B', 'D'), ne),
Constraint(('C', 'E'), ne)])
def meet_at(p1, p2):
"""returns a function that is true when the words meet at the postions p1, p2
"""
def meets(w1, w2):
return w1[p1] == w2[p2]
meets.__name__ = "meet_at(" + str(p1) + ',' + str(p2) + ')'
return meets
crossword1 = CSP({'one_across': {'ant', 'big', 'bus', 'car', 'has'},
'one_down': {'book', 'buys', 'hold', 'lane', 'year'},
'two_down': {'ginger', 'search', 'symbol', 'syntax'},
'three_across': {'book', 'buys', 'hold', 'land', 'year'},
'four_across': {'ant', 'big', 'bus', 'car', 'has'}},
[Constraint(('one_across', 'one_down'), meet_at(0, 0)),
Constraint(('one_across', 'two_down'), meet_at(2, 0)),
Constraint(('three_across', 'two_down'), meet_at(2, 2)),
Constraint(('three_across', 'one_down'), meet_at(0, 2)),
Constraint(('four_across', 'two_down'), meet_at(0, 4))])
words = {'ant', 'big', 'bus', 'car', 'has', 'book', 'buys', 'hold',
'lane', 'year', 'ginger', 'search', 'symbol', 'syntax'}
def is_word(*letters, words=words):
"""is true if the letters concatenated form a word in words"""
return "".join(letters) in words
letters = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l",
"m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y",
"z"]
crossword1d = CSP({'p00': letters, 'p10': letters, 'p20': letters, # first row
'p01': letters, 'p21': letters, # second row
'p02': letters, 'p12': letters, 'p22': letters, 'p32': letters, # third row
'p03': letters, 'p23': letters, # fourth row
'p24': letters, 'p34': letters, 'p44': letters, # fifth row
'p25': letters # sixth row
},
[Constraint(('p00', 'p10', 'p20'), is_word), # 1-across
Constraint(('p00', 'p01', 'p02', 'p03'), is_word), # 1-down
Constraint(('p02', 'p12', 'p22', 'p32'), is_word), # 3-across
Constraint(('p20', 'p21', 'p22', 'p23', 'p24', 'p25'), is_word), # 2-down
Constraint(('p24', 'p34', 'p44'), is_word) # 4-across
])
def test(CSP_solver, csp=csp1,
solutions=[{'A': 1, 'B': 3, 'C': 4}, {'A': 2, 'B': 3, 'C': 4}]):
"""CSP_solver is a solver that finds a solution to a CSP.
CSP_solver takes a csp and returns a solution.
csp has to be a CSP, where solutions is the list of all solutions.
This tests whether the solution returned by CSP_solver is a solution.
"""
print("Testing csp with", CSP_solver.__doc__)
sol0 = CSP_solver(csp)
print("Solution found:", sol0)
assert sol0 in solutions, "Solution not found for " + str(csp)
print("Passed unit test")