-
Notifications
You must be signed in to change notification settings - Fork 36
/
pycosat.c
425 lines (358 loc) · 11.9 KB
/
pycosat.c
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
/*
Copyright (c) 2013-2017, Ilan Schnell, Continuum Analytics, Inc.
Python bindings to picosat (http://fmv.jku.at/picosat/)
This file is published under the same license as picosat itself, which
uses an MIT style license.
*/
#define PYCOSAT_URL "https://pypi.python.org/pypi/pycosat"
#define PYCOSAT_VERSION "0.6.6"
#include <Python.h>
#ifdef _MSC_VER
#define NGETRUSAGE
#define inline __inline
#endif
#include "picosat.h"
#ifndef DONT_INCLUDE_PICOSAT
#include "picosat.c"
#endif
/* When defined, picosat uses the Python memory manager
We cannot do this while we:
"release GIL during main picosat computation"
https://github.com/ContinuumIO/pycosat/commit/f50c89a10db2e87c3e6b896c43ce0549f92039d0
I am assuming here that we would rather release the GIL than use the Python mem allocation
though there is no comments to explain the trade-offs between the Python vs libc allocators
*/
/* #define WITH_PYMEM */
#if PY_MAJOR_VERSION >= 3
#define IS_PY3K
#endif
#ifdef IS_PY3K
#define PyInt_FromLong PyLong_FromLong
#define IS_INT(x) (PyLong_Check(x))
#else
#define IS_INT(x) (PyInt_Check(x) || PyLong_Check(x))
#endif
#if PY_MAJOR_VERSION == 2 && PY_MINOR_VERSION <= 5
#define PyUnicode_FromString PyString_FromString
#endif
#if defined(WITH_PYMEM)
/* the following three adapter functions are used as arguments to
picosat_minit, such that picosat used the Python memory manager */
inline static void *py_malloc(void *mmgr, size_t bytes)
{
return PyMem_Malloc(bytes);
}
inline static void *py_realloc(void *mmgr, void *ptr, size_t old, size_t new)
{
return PyMem_Realloc(ptr, new);
}
inline static void py_free(void *mmgr, void *ptr, size_t bytes)
{
PyMem_Free(ptr);
}
#endif
/* Add the inverse of the (current) solution to the clauses.
This function is essentially the same as the function blocksol in app.c
in the picosat source. */
static int blocksol(PicoSAT *picosat, signed char *mem)
{
int max_idx, i;
if (mem == NULL) {
// caller must allocate picosat_variables(it->picosat) + 1 bytes
return -1;
}
max_idx = picosat_variables(picosat);
for (i = 1; i <= max_idx; i++)
mem[i] = (picosat_deref(picosat, i) > 0) ? 1 : -1;
for (i = 1; i <= max_idx; i++)
picosat_add(picosat, (mem[i] < 0) ? i : -i);
picosat_add(picosat, 0);
return 0;
}
static int add_clause(PicoSAT *picosat, PyObject *clause)
{
PyObject *iterator; /* each clause is an iterable of literals */
PyObject *lit; /* the literals are integers */
int v;
iterator = PyObject_GetIter(clause);
if (iterator == NULL)
return -1;
while ((lit = PyIter_Next(iterator)) != NULL) {
if (!IS_INT(lit)) {
Py_DECREF(lit);
Py_DECREF(iterator);
PyErr_SetString(PyExc_TypeError, "integer expected");
return -1;
}
v = PyLong_AsLong(lit);
Py_DECREF(lit);
if (v == 0) {
Py_DECREF(iterator);
PyErr_SetString(PyExc_ValueError, "non-zero integer expected");
return -1;
}
picosat_add(picosat, v);
}
Py_DECREF(iterator);
if (PyErr_Occurred())
return -1;
picosat_add(picosat, 0);
return 0;
}
static int add_clauses(PicoSAT *picosat, PyObject *clauses)
{
PyObject *iterator; /* clauses can be any iterable */
PyObject *item; /* each clause is an iterable of integers */
iterator = PyObject_GetIter(clauses);
if (iterator == NULL)
return -1;
while ((item = PyIter_Next(iterator)) != NULL) {
if (add_clause(picosat, item) < 0) {
Py_DECREF(item);
Py_DECREF(iterator);
return -1;
}
Py_DECREF(item);
}
Py_DECREF(iterator);
if (PyErr_Occurred())
return -1;
return 0;
}
static PicoSAT* setup_picosat(PyObject *args, PyObject *kwds)
{
PicoSAT *picosat;
PyObject *clauses; /* iterable of clauses */
int vars = -1, verbose = 0;
unsigned long long prop_limit = 0;
static char* kwlist[] = {"clauses",
"vars", "verbose", "prop_limit", NULL};
if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|iiK:(iter)solve", kwlist,
&clauses,
&vars, &verbose, &prop_limit))
return NULL;
#if defined(WITH_PYMEM)
picosat = picosat_minit(NULL, py_malloc, py_realloc, py_free);
#else
picosat = picosat_init();
#endif
picosat_set_verbosity(picosat, verbose);
if (vars != -1)
picosat_adjust(picosat, vars);
if (prop_limit)
picosat_set_propagation_limit(picosat, prop_limit);
if (add_clauses(picosat, clauses) < 0) {
picosat_reset(picosat);
return NULL;
}
if (verbose >= 2)
picosat_print(picosat, stdout);
return picosat;
}
/* read the solution from the picosat object and return a Python list */
static PyObject* get_solution(PicoSAT *picosat)
{
PyObject *list;
int max_idx, i, v;
max_idx = picosat_variables(picosat);
list = PyList_New((Py_ssize_t) max_idx);
if (list == NULL) {
picosat_reset(picosat);
return NULL;
}
for (i = 1; i <= max_idx; i++) {
v = picosat_deref(picosat, i);
assert(v == -1 || v == 1);
if (PyList_SetItem(list, (Py_ssize_t) (i - 1),
PyInt_FromLong((long) (v * i))) < 0) {
Py_DECREF(list);
picosat_reset(picosat);
return NULL;
}
}
return list;
}
static PyObject* solve(PyObject *self, PyObject *args, PyObject *kwds)
{
PicoSAT *picosat;
PyObject *result = NULL; /* return value */
int res;
picosat = setup_picosat(args, kwds);
if (picosat == NULL)
return NULL;
Py_BEGIN_ALLOW_THREADS /* release GIL */
res = picosat_sat(picosat, -1);
Py_END_ALLOW_THREADS
switch (res) {
case PICOSAT_SATISFIABLE:
result = get_solution(picosat);
break;
case PICOSAT_UNSATISFIABLE:
result = PyUnicode_FromString("UNSAT");
break;
case PICOSAT_UNKNOWN:
result = PyUnicode_FromString("UNKNOWN");
break;
default:
PyErr_Format(PyExc_SystemError, "picosat return value: %d", res);
}
picosat_reset(picosat);
return result;
}
PyDoc_STRVAR(solve_doc,
"solve(clauses [, kwargs]) -> list\n\
\n\
Solve the SAT problem for the clauses, and return a solution as a\n\
list of integers, or one of the strings \"UNSAT\", \"UNKNOWN\".\n\
Please see " PYCOSAT_URL " for more details.");
/*********************** Solution Iterator *********************/
typedef struct {
PyObject_HEAD
PicoSAT *picosat;
signed char *mem; /* temporary storage */
} soliterobject;
static PyTypeObject SolIter_Type;
#define SolIter_Check(op) PyObject_TypeCheck(op, &SolIter_Type)
static PyObject* itersolve(PyObject *self, PyObject *args, PyObject *kwds)
{
soliterobject *it; /* iterator to be returned */
it = PyObject_GC_New(soliterobject, &SolIter_Type);
if (it == NULL)
return NULL;
it->picosat = setup_picosat(args, kwds);
if (it->picosat == NULL)
return NULL;
it->mem = PyMem_Calloc(picosat_variables(it->picosat) + 1, 1);
if (it->mem == NULL) {
PyErr_NoMemory();
return NULL;
}
PyObject_GC_Track(it);
return (PyObject *) it;
}
PyDoc_STRVAR(itersolve_doc,
"itersolve(clauses [, kwargs]) -> iterator\n\
\n\
Solve the SAT problem for the clauses, and return an iterator over\n\
the solutions (which are lists of integers).\n\
Please see " PYCOSAT_URL " for more details.");
static PyObject* soliter_next(soliterobject *it)
{
PyObject *result = NULL; /* return value */
int res;
assert(SolIter_Check(it));
Py_BEGIN_ALLOW_THREADS /* release GIL */
res = picosat_sat(it->picosat, -1);
Py_END_ALLOW_THREADS
switch (res) {
case PICOSAT_SATISFIABLE:
result = get_solution(it->picosat);
if (result == NULL) {
PyErr_SetString(PyExc_SystemError, "failed to create list");
return NULL;
}
/* add inverse solution to the clauses, for next iteration */
if (blocksol(it->picosat, it->mem) < 0)
return NULL;
break;
case PICOSAT_UNSATISFIABLE:
case PICOSAT_UNKNOWN:
/* no more solutions -- stop iteration */
break;
default:
PyErr_Format(PyExc_SystemError, "picosat return value: %d", res);
}
return result;
}
static void soliter_dealloc(soliterobject *it)
{
PyObject_GC_UnTrack(it);
if (it->mem)
PyMem_Free(it->mem);
picosat_reset(it->picosat);
PyObject_GC_Del(it);
}
static int soliter_traverse(soliterobject *it, visitproc visit, void *arg)
{
return 0;
}
static PyTypeObject SolIter_Type = {
#ifdef IS_PY3K
PyVarObject_HEAD_INIT(NULL, 0)
#else
PyObject_HEAD_INIT(NULL)
0, /* ob_size */
#endif
"soliterator", /* tp_name */
sizeof(soliterobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor) soliter_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_compare */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */
0, /* tp_doc */
(traverseproc) soliter_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc) soliter_next, /* tp_iternext */
0, /* tp_methods */
};
/*************************** Method definitions *************************/
/* declaration of methods supported by this module */
static PyMethodDef module_functions[] = {
{"solve", (PyCFunction) solve, METH_VARARGS | METH_KEYWORDS,
solve_doc},
{"itersolve", (PyCFunction) itersolve, METH_VARARGS | METH_KEYWORDS,
itersolve_doc},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(module_doc, "\
pycosat: bindings to PicoSAT\n\
============================\n\n\
There are two functions in this module, solve and itersolve.\n\
Please see " PYCOSAT_URL " for more details.");
/* initialization routine for the shared library */
#ifdef IS_PY3K
static PyModuleDef moduledef = {
PyModuleDef_HEAD_INIT, "pycosat", module_doc, -1, module_functions,
};
PyMODINIT_FUNC PyInit_pycosat(void)
#else
PyMODINIT_FUNC initpycosat(void)
#endif
{
PyObject *m;
#ifdef IS_PY3K
if (PyType_Ready(&SolIter_Type) < 0)
return NULL;
m = PyModule_Create(&moduledef);
if (m == NULL)
return NULL;
#else
if (PyType_Ready(&SolIter_Type) < 0)
return;
m = Py_InitModule3("pycosat", module_functions, module_doc);
if (m == NULL)
return;
#endif
PyModule_AddObject(m, "__version__",
PyUnicode_FromString(PYCOSAT_VERSION));
#ifdef IS_PY3K
return m;
#endif
}