pub struct FoldNode<'a> {
pub parent_is_compl: bool,
pub node: BddPtr<'a>,
pub var: Option<VarLabel>,
}
Expand description
The intermediate representation for a BddPtr that is being folded in a
Fold
computation.
FoldNode::parent_is_compl
: tells you if the parent node was aBddPtr::Compl
.FoldNode::node
: gives you the pointer to the current node.FoldNode::var
: gives you theVarLabel
if the node is aBddPtr::Reg
.
Fields§
§parent_is_compl: bool
§node: BddPtr<'a>
§var: Option<VarLabel>
Auto Trait Implementations§
impl<'a> Freeze for FoldNode<'a>
impl<'a> !RefUnwindSafe for FoldNode<'a>
impl<'a> !Send for FoldNode<'a>
impl<'a> !Sync for FoldNode<'a>
impl<'a> Unpin for FoldNode<'a>
impl<'a> !UnwindSafe for FoldNode<'a>
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