pub struct AsyncGraph<P: AsyncGraphEdgeParams> {
    edges: P,
}
👎 Deprecated
Expand description

An asynchronous transition system of a BooleanNetwork. The states of the graph are standard IdStates. The parameter sets are given by the associated AsyncGraphEdgeParams.

Async graph implements the standard “asynchronous update”, i.e. every variable can be non-deterministically updated at any time, but the actual parameters for which this happens are determined by the AsyncGraphEdgeParams.

This actually hides a lot of complexity, because implementing AsyncGraphEdgeParams is typically much easier than re-implementing the whole async graph structure.

AsyncGraph in its current form and the related structures are deprecated in favour of SymbolicAsyncGraph. We may re-implement it later under a new name and a new API, because in some niche use cases it seems to be faster than fully symbolic approach. However, try not to rely on this implementation too much.

Fields

edges: P
👎 Deprecated

Implementations

Create a new AsyncGraph from the given BooleanNetwork using default edge parameter implementation.

Create a new AsyncGraph using given edge parametrisation.

Return the total number of states in this graph.

Return a reference to the original Boolean network.

Expose the inner edge implementation.

Make a witness network for one parametrisation in the given set.

Return an empty set of parameters.

Return a full set of parameters.

Trait Implementations

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.