.\" $Id: getbddvarbyindex.3,v 1.1 2002/03/18 11:26:50 ludo Exp $ .\" @(#)getbddvarbyindex.2 2.7 96/07/02 ; Labo masi cao-vlsi; Author : Jacomme Ludovic .TH GETBDDVARBYINDEX 3 "October 1, 1997" "ASIM/LIP6" "BDD FUNCTIONS" .SH NAME getbddvarbyindex \- converts \fBbdd\fP index to a variable number. .so buster/alliance/alc_origin.1.en.gz .SH SYNOPSYS .nf .if n \{\ .ft B \} .if t \{\ .ft CR \} #include "bdd101.h" bddindex getbddvarbyindex( BddSystem, Index ) bddsystem \(**BddSystem; bddindex Index; .ft R .fi .SH PARAMETERS .TP 20 \fIBddSystem\fP The \fBbdd\fP system. .TP \fIIndex\fP The \fBbdd\fP index to convert. .SH DESCRIPTION \fBgetbddvarbyindex\fP converts the \fBbdd\fP index \fIIndex to a variable number, in the \fBbdd\fP system \fIBddSystem\fP. If a null pointer is given, the default \fBbdd\fP system is used. The function uses simply the translation table \fIBddSystem\fP->INDEX_TO_VAR. .br .SH RETURN VALUE \fBgetbddvarbyindex\fP returns the variable number of the \fBbdd\fP index \fIIndex\fP. .SH ERRORS .if n \{\ .ft B \} .if t \{\ .ft CR \} "index xxx out of range, error !" .ft R .RS The \fIIndex parameter must be a valid index. .RE .SH EXAMPLE .ta 3n 6n 9n 12n 15n 18n 21n .nf .if n \{\ .ft B \} .if t \{\ .ft CR \} #include "bdd101.h" bddsystem \(**BddSystem; bddnode \(**BddNode; BddSystem = createbddsystem( 100, 1000, 100, 50000 ); BddNode = addbddvar( (bddsystem \(**)0, 0 ); /* displays 0 */ printf( "%d", getbddvarbyindex( (bddsystem \(**)0, BddNode->INDEX ) ); destroybddsystem( (bddsystem \(**)0 ); .ft R .fi .SH SEE ALSO .BR bdd (1) .so buster/alliance/alc_bug_report.1.en.gz