forked from patmorin/turan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturan-table.py
executable file
·216 lines (179 loc) · 6.99 KB
/
turan-table.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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
#!/usr/bin/python3
#coding=utf-8
import itertools
# copied from python itertools documentation
def powerset(iterable):
"powerset([1,2,3]) --> () (1,) (2,) (3,) (1,2) (1,3) (2,3) (1,2,3)"
s = list(iterable)
return itertools.chain.from_iterable(itertools.combinations(s, r) \
for r in range(len(s)+1))
names = ["ears", "taco", "bat", "nested", "crossing",
"mariposa", "swords", "david"]
for i in range(len(names)):
globals()[names[i]] = i
#taco, mariposa, bat, nested, crossing, swords, david, ears = range(8)
def pack_set(iterable):
x = 0
for y in iterable:
x |= 1 << y
return x
def pack(*args):
return pack_set(args)
def unpack(x):
stuff = list()
i = 0
while x > 0:
if x & 1:
stuff.append(i)
i += 1
x >>= 1
return set(stuff)
def tostring(x):
return [names[i] for i in unpack(x)]
def format_exponent(c):
if c == -1:
return "0"
if c == 0:
return "1"
if c == 1:
return "n"
return "n^{{{}}}".format(c)
def print_everything(upper_bounds, lower_bounds):
print("="*60)
tight = 0
for x in range(2**8):
if x in upper_bounds and x in lower_bounds \
and upper_bounds[x] == lower_bounds[x]:
print("ex(n,{{{}}}) = Θ({})".format(",".join(tostring(x)),
format_exponent(upper_bounds[x])))
tight += 1
else:
if x in upper_bounds:
print("ex(n,{{{}}}) = O({})".format(",".join(tostring(x)),
format_exponent(upper_bounds[x])))
if x in lower_bounds:
print("ex(n,{{{}}}) = Ω({})".format(",".join(tostring(x)),
format_exponent(lower_bounds[x])))
print("Found {} tight results".format(tight))
def n2s(i, cfgs):
if i in unpack(cfgs):
return r'\{}'.format(names[i])
return ''
def make_table(fp, upper_bounds, lower_bounds):
colcfgs = [swords, david, ears]
rowcfgs = [taco, bat, nested, crossing]
cols = sorted([pack_set(s) for s in powerset(colcfgs)])
rows = sorted([pack_set(s) for s in powerset(rowcfgs)])
tight = 0
fp.write(r'\begin{{tabular}}{{|c@{{\,}}c@{{\,}}c@{{\,}}c{}|}}\hline'.format('|c'*8) + '\n')
for i in colcfgs:
fp.write("&&&&")
fp.write("&".join([n2s(i, c) for c in cols]))
if i == colcfgs[-1]:
fp.write(r' \\ ' + '\n')
else:
fp.write(r' \\[-1mm] ' + '\n')
fp.write(r'\hline')
for r in rows:
fp.write("&".join([n2s(i, r) for i in rowcfgs]))
for c in cols:
x = r|c
if upper_bounds[x] == lower_bounds[x]:
fp.write(r'&\cellcolor{{blue!10}}${}$'.format(format_exponent(upper_bounds[x])))
tight += 1
else:
fp.write(r'&\cellcolor{{red!10}}${}: {}$'.format(format_exponent(lower_bounds[x]),
format_exponent(upper_bounds[x])))
fp.write(r'\\ \hline' + '\n')
fp.write(r'\end{tabular}')
print("Found {} tight bounds".format(tight))
def close_bounds(upper_bounds, lower_bounds):
# Mariposas don't matter
for k in list(upper_bounds.keys()):
s = unpack(k)
x = pack_set(s ^ {mariposa})
if x in upper_bounds and upper_bounds[x] < upper_bounds[k]:
upper_bounds[k] = upper_bounds[x]
upper_bounds[x] = upper_bounds[k]
for k in list(lower_bounds.keys()):
s = unpack(k)
x = pack_set(s ^ {mariposa})
if x in lower_bounds and lower_bounds[x] > lower_bounds[k]:
lower_bounds[k] = lower_bounds[x]
lower_bounds[x] = lower_bounds[k]
# Create all upper bounds inherited by superset relationships
for k in list(upper_bounds.keys()):
these = set(unpack(k))
others = set(range(8)) - these
for s in powerset(others):
x = pack_set(these|set(s))
if x not in upper_bounds or upper_bounds[x] > upper_bounds[k]:
upper_bounds[x] = upper_bounds[k]
# Create all lower bounds inherited by subset relationship
for k in list(lower_bounds.keys()):
these = set(unpack(k))
for s in powerset(these):
x = pack_set(s)
if x not in lower_bounds or lower_bounds[x] < lower_bounds[k]:
lower_bounds[x] = lower_bounds[k]
if __name__ == "__main__":
upper_bounds = dict()
lower_bounds = dict()
# Trivial stuff
upper_bounds[pack_set([])] = 3 # empty set is Theta(n^3)
upper_bounds[pack_set(range(8))] = 0 # complete set is Theta(1)
# These are all due to Brass
upper_bounds[pack(mariposa)] = 3
upper_bounds[pack(taco)] = 2
upper_bounds[pack(bat)] = 3
upper_bounds[pack(nested)] = 2
upper_bounds[pack(crossing)] = 2
upper_bounds[pack(ears)] = 3
upper_bounds[pack(swords)] = 2
upper_bounds[pack(david)] = 2
upper_bounds[pack(bat, nested)] = 2
upper_bounds[pack(nested, crossing)] = 2
upper_bounds[pack(bat, crossing)] = 2
# This is Brass, Rote, and Swanepoel
upper_bounds[pack(ears, swords, bat, nested)] = 1
# These are inherited from hypergraphs
upper_bounds[pack(bat, nested, crossing)] = 1
upper_bounds[pack(taco, mariposa)] = 2
upper_bounds[pack(ears, swords, david)] = 2
# Up to here, everything is tight, so copy this to the lower bounds
for k in upper_bounds:
lower_bounds[k] = upper_bounds[k]
# We have Omega(n) lower bounds for most everything
s = set(range(8))-{mariposa}
upper_bounds[pack_set(s)] = 0
for t in s:
lower_bounds[pack_set(s-{t})] = 1
close_bounds(upper_bounds, lower_bounds)
fp = open("oldbounds.tex", "w")
make_table(fp, upper_bounds, lower_bounds)
fp.close()
# New Upper bounds based on swords
upper_bounds[pack(taco, swords)] = 1
upper_bounds[pack(nested, swords)] = 1
upper_bounds[pack(crossing, swords)] = 1
# New linear upper bounds
upper_bounds[pack(taco, nested, crossing)] = 1
upper_bounds[pack(nested, crossing, ears)] = 1
upper_bounds[pack(taco, nested, david)] = 1
upper_bounds[pack(nested, ears, david)] = 1 # (2)
# upper_bounds[pack(nested, bat, david)] = 1 # false, replaced by (1)
# Upper bounds based on tripod packing
lower_bounds[pack(taco, nested, bat, ears)] = 1.546 # Gowers and Long
upper_bounds[pack(taco, nested)] = 2 # Induced matchings
# New lower bounds
lower_bounds[pack(ears, bat, mariposa)] = 3
lower_bounds[pack(taco, david, crossing, bat, ears)] = 2
lower_bounds[pack(swords, bat, ears, david)] = 2
# lower_bounds[pack(nested, ears, david)] = 2 # incorrect, replaced by (2)
lower_bounds[pack(david, nested, crossing)] = 2
lower_bounds[pack(nested, bat, david)] = 2 # (1)
lower_bounds[pack(bat, nested, ears)] = 2
close_bounds(upper_bounds, lower_bounds)
fp = open("bounds.tex", "w")
make_table(fp, upper_bounds, lower_bounds)
fp.close()