DOKK / manpages / debian 10 / alliance / viewbddcircuit.3.en
VIEWBDDCIRCUIT(3) BDD FUNCTIONS VIEWBDDCIRCUIT(3)

viewbddcircuit - displays a bdd circuit.

See the file buster/alliance/alc_origin.1.en.gz.

#include "bdd101.h"
void viewbddcircuit( BddCircuit, ViewIndex )

bddcircuit ∗BddCircuit;
char ViewName;

The bdd circuit to display.
Flag to display more informations.

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.

viewbddcircuit returns nothing.

#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 );

bdd(1)

See the file buster/alliance/alc_bug_report.1.en.gz.

October 1, 1997 ASIM/LIP6