pub struct BDD {
pub nodes: Vec<BDDNode>,
pub root: usize,
}Expand description
A Binary Decision Diagram (BDD).
Fields§
§nodes: Vec<BDDNode>The unique-table of nodes.
root: usizeIndex of the root node.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BDD
impl RefUnwindSafe for BDD
impl Send for BDD
impl Sync for BDD
impl Unpin for BDD
impl UnsafeUnpin for BDD
impl UnwindSafe for BDD
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more