otter_sat 0.0.9

A library for determining the satisfiability of boolean formulas written in conjunctive normal form, developed to support investigation into solvers by researchers, developers, or anyone curious.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Various procedures for mutating a context.
//!
//!For the most part these are methods accessed via a context, and primarily placed here for documentation.

pub mod analysis;
pub mod apply_consequences;
pub mod backjump;
pub mod bcp;
pub mod decision;
pub mod schedulers;
pub mod solve;