Skip to main content

pldag/
lib.rs

1mod error;
2mod pldag;
3mod storage;
4
5pub use error::{PldagError, Result};
6pub use pldag::{ID, Bound, Pldag, Node, Constraint, SparsePolyhedron, DensePolyhedron, CompiledDag, Kind, Coef};
7pub use storage::{InMemoryStore, KeyValueStore, NodeStore, NodeStoreTrait};