logicrs 0.5.1

Rust library for logic expression
Documentation
1
2
3
4
5
6
7
8
9
10
mod bva;
pub use bva::*;

use crate::{Cnf, DagCnf};

#[derive(Debug, Clone)]
pub struct CstDagCnf {
    pub dag: DagCnf,
    pub cst: Cnf,
}