|
NAMEaddbddcircuitin - adds an input in a bdd circuit. See the file man1/alc_origin.1. SYNOPSIS#include "bdd101.h" bddnode ∗addbddcircuitin( BddCircuit, InputName, Index, Mode ) PARAMETERS
DESCRIPTIONaddbddcircuitin adds an input InputName in the bdd circuit BddCircuit. If a null pointer is given, the default bdd circuit is used. If the input InputName exists already, its node pointer is returned. The Mode parameter specifies how to create the new variable associated to the name InputName. The Index parameter is used with the BDD_IN_MODE_BEFORE and BDD_IN_MODE_AFTER mode. The Mode parameter can takes the following values :
RETURN VALUEaddbddcircuitin returns a pointer to the new created node. ERRORS"unknwon in mode xxx error !" The Mode parameter must be defined.
EXAMPLE#include "bdd101.h" SEE ALSObdd(1) See the file man1/alc_bug_report.1.
|