package minisat
  Bindings to Minisat-C-1.14.1, with the solver included
Install
    
    dune-project
 Dependency
Authors
Maintainers
Sources
  
    
      v0.4.tar.gz
    
    
        
    
  
  
  
    
  
  
    
  
        md5=a17f04229fcba9f454b3499386f35d5e
    
    
  sha512=e05d49ea0f6b8379c61795f20331b930daba0cb1dde8eb5c0a2810e18d43b997252af5f97fffbf427b890f982ca09b195b8591648bb702e819a191ce13cdee46
    
    
  doc/CHANGELOG.html
0.4
- move to github actions for CI
 - perf: release runtime lock in 
solve - perf: fast path for 
add_clause - perf: annotate some C functions as 
noalloc 
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 
dunefor build - upgrades to the CI
 
0.1
- Edits for continous integration:
 
- removed symlinks of 
src/solver.h,src/solver.c,src/vec.cand 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 _WIN32wasn't proper for cygwin builds; plus, theuint64isn't standard, changed touint64_t. See the SO topic here: http://stackoverflow.com/questions/126279 
- initial release