pub struct SymbolicContext { /* private fields */ }
Expand description

Symbolic context manages the mapping between entities of the Boolean network (variables, parameters, uninterpreted functions) and BddVariables used in bdd-lib.

It also provides utility methods for creating Bdd objects that match different conditions imposed on the parameter space of the network.

Note that while this is technically public, it should not be used unless absolutely necessary. Playing with raw BDDs is dangerous.

Implementations

Create a new SymbolicContext that is based on the given BooleanNetwork.

Provides access to the raw Bdd context.

Getter for variables encoding the state variables of the network.

Getter for the entire function table of an implicit update function.

Getter for the entire function table of an explicit parameter.

Getter for variables encoding the parameter variables of the network.

Create a constant true/false Bdd.

Create a Bdd that is true when given network variable is true.

Create a Bdd that is true when given explicit uninterpreted function (aka parameter) is true for given arguments.

Create a Bdd that is true when given implicit uninterpreted function is true for given arguments.

Panic: Variable must have an implicit uninterpreted function.

Create a Bdd that is true when given FnUpdate evaluates to true.

Create a Bdd which represents the instantiated implicit uninterpreted function.

Create a Bdd which represents the instantiated explicit uninterpreted function.

Create a Bdd which represents the instantiated FnUpdate.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.