viewbddcircuit.3alc - Man Page
displays a bdd circuit.
Synopsis
#include "bdd101.h" void viewbddcircuit( BddCircuit, ViewIndex ) bddcircuit ∗BddCircuit; char ViewName;
Parameters
- BddCircuit
The bdd circuit to display.
- ViewName
Flag to display more information.
Description
viewbddcircuit displays the bdd circuit BddCircuit. If ViewName is true, viewbddcircuit displays also the field NAME_IN. If a null pointer is given, the default bdd circuit is used.
Return Value
viewbddcircuit returns nothing.
Example
#include "bdd101.h" bddsystem ∗BddSystem; bddcircuit ∗BddCircuit; BddSystem = createbddsystem( 100, 1000, 100, 50000 ); BddCircuit = createbddcircuit( "hello_world", 10, 10, BddSystem ); ... viewbddcircuit( (bddcircuit ∗)0, 0 ); destroybddsystem( (bddsystem ∗)0 ); destroybddcircuit( (bddcircuit ∗)0 );
See Also
Info
October 1, 1997 ASIM/LIP6 BDD FUNCTIONS