package minisat
Bindings to Minisat-C-1.14.1, with the solver included
Install
Dune Dependency
Authors
Maintainers
Sources
v0.3.tar.gz
md5=f680652b0414d00c406c6f2a6ae4dc8f
sha512=9ca23af313b1111d38b84b2169b326d288616cdb43295ce9fe1178b74d9b5950019558653ecdd85847f246e9df120c8a43ac09d90bef41d0097466ac7cddca4b
doc/CHANGELOG.html
0.3
fixes:
- return code of caml_minisat_value
- fallthrough comment
- pointer cast
- update travis file to add 4.09
- only ask for dune 1.0
0.2
- migrate to
dune
for build - upgrades to the CI
0.1
- Edits for continous integration:
- removed symlinks of
src/solver.h
,src/solver.c
,src/vec.c
and replaced them by the actual files; I did that because in cygwin, ocamlc wouldn't find solver.h in#include "solver.h"
. I might be mistaken but it's the only thing I found to avoid the problem... - modified the uint64 typedef that was causing issues in cygwin+ocamlc. In fact, the
#ifdef _WIN32
wasn't proper for cygwin builds; plus, theuint64
isn't standard, changed touint64_t
. See the SO topic here: http://stackoverflow.com/questions/126279
- initial release