cadical-sys 0.6.0

Almost complete safe and unsafe bindings for the CaDiCal SAT solver. Made using the cxx crate and then wrapped in a safe 1 to 1 API.
Documentation
1
2
3
4
5
6
#include "../../src/cadical.hpp"
int main () {
  CaDiCaL::Solver *solver = new CaDiCaL::Solver ();
  delete solver;
  return 0;
}