forked from paupaf3/rp-APAI-SATsolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rnd-graph-gen.py
executable file
·185 lines (155 loc) · 5.97 KB
/
rnd-graph-gen.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
#!/usr/bin/python3
#######################################################################
# Copyright 2020 Josep Argelich
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#######################################################################
# Libraries
import sys
import subprocess
import random
import networkx
import pygraphviz
# Classes
class CNF():
"""A CNF formula randomly generated"""
def __init__(self, num_nodes, edge_prob, num_colors):
"""
Initialization
num_nodes: Number of nodes
edge_prob: Edge probability between two nodes
num_colors: Number of colors to color the graph
clauses: List of clauses
G: networkx Graph
A: pygraphviz Graph
sol: Solution returned by sadSAT
"""
self.num_nodes = num_nodes
self.edge_prob = edge_prob
self.num_colors = num_colors
self.clauses = []
self.G = networkx.Graph()
self.gen_node_clauses()
self.gen_edge_clauses()
self.A = networkx.nx_agraph.to_agraph(self.G)
self.A.node_attr['style'] = 'filled'
self.A.node_attr['width'] = '0.4'
self.A.node_attr['height'] = '0.4'
self.A.edge_attr['color'] = '#000000'
self.colors = ['#FF0000',
'#FF6F00',
'#FCDB03',
'#32A800',
'#00B37D',
'#274CE3',
'#9834EB',
'#B809A6',
'#C20078',
'#612727',
'#FFFFFF',
'#828282',
'#000000'
]
self.write()
self.sol = []
self.find_solution()
self.paint_nodes()
self.print_graph()
def gen_node_clauses(self):
'''Generate the ALO + AMO clauses for all the nodes'''
for n in range(self.num_nodes):
self.G.add_node(n)
# ALO
var1 = n * self.num_colors + 1
self.clauses.append([i for i in range(var1, var1 + self.num_colors)])
# AMO
for v1 in range(var1, var1 + self.num_colors - 1):
for v2 in range(v1 + 1, var1 + self.num_colors):
self.clauses.append([-v1, -v2])
def gen_edge_clauses(self):
'''Generates the clauses for each pair of nodes that have an edge with certain prob'''
for n1 in range(self.num_nodes - 1):
for n2 in range(n1 + 1, self.num_nodes):
if random.random() < self.edge_prob:
self.G.add_edge(n1, n2)
var1 = n1 * self.num_colors + 1
var2 = n2 * self.num_colors + 1
for c in range(self.num_colors):
self.clauses.append([-(var1 + c), -(var2 + c)])
def show(self):
"""Prints the formula to the stdout"""
sys.stdout.write("c Random CNF formula\n")
sys.stdout.write("p cnf %d %d\n" % (self.num_nodes * self.num_colors, len(self.clauses)))
for c in self.clauses:
sys.stdout.write("%s 0\n" % " ".join(map(str, c)))
def write(self):
f = open('solver_input.cnf', 'w')
f.write("c Random CNF formula\n")
f.write("p cnf %d %d\n" % (self.num_nodes * self.num_colors, len(self.clauses)))
for c in self.clauses:
f.write("%s 0\n" % " ".join(map(str, c)))
def find_solution(self):
res = subprocess.check_output("python ./sadSAT.py solver_input.cnf", shell=True)
res = res.decode()
self.sol = res[22:len(res) - 3]
print(self.sol)
self.sol = self.sol.split(" ")
print(self.sol)
def paint_nodes(self):
splitted_sol = [self.sol[x:x + self.num_colors] for x in range(0, len(self.sol), self.num_colors)]
index_node = 0
for node in splitted_sol:
index_color = 0
for color in node:
if int(color) > 0:
self.A.get_node(index_node).attr['fillcolor'] = self.colors[index_color]
index_color += 1
index_node += 1
def print_graph(self):
self.A.layout()
self.A.draw("out.png", format = 'png')
# Main
if __name__ == '__main__' :
"""A random CNF generator"""
# Check parameters
if len(sys.argv) < 4 or len(sys.argv) > 5:
sys.exit("Use: %s <num-nodes> <edge-prob> <num-colors> [<random-seed>]" % sys.argv[0])
try:
num_nodes = int(sys.argv[1])
except:
sys.exit("ERROR: Number of nodes not an integer (%s)." % sys.argv[1])
if (num_nodes < 1):
sys.exit("ERROR: Number of nodes must be >= 1 (%d)." % num_nodes)
try:
edge_prob = float(sys.argv[2])
except:
sys.exit("ERROR: Edge probability not a float (%s)." % sys.argv[2])
if (edge_prob < 0 or edge_prob > 1):
sys.exit("ERROR: Edge probability must be in [0, 1] range (%d)." % edge_prob)
try:
num_colors = int(sys.argv[3])
except:
sys.exit("ERROR: Number of colors not an integer (%s)." % sys.argv[3])
if (num_colors < 1):
sys.exit("ERROR: Number of colors must be >= 1 (%d)." % num_colors)
if len(sys.argv) > 4:
try:
seed = int(sys.argv[4])
except:
sys.exit("ERROR: Seed number not an integer (%s)." % sys.argv[4])
else:
seed = None
# Initialize random seed (current time)
random.seed(seed)
# Create a CNF instance
cnf_formula = CNF(num_nodes, edge_prob, num_colors)
# Show formula
cnf_formula.write()