⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cuddinit.c

📁 主要进行大规模的电路综合
💻 C
字号:
/**CFile***********************************************************************  FileName    [cuddInit.c]  PackageName [cudd]  Synopsis    [Functions to initialize and shut down the DD manager.]  Description [External procedures included in this module:		<ul>		<li> Cudd_Init()		<li> Cudd_Quit()		</ul>	       Internal procedures included in this module:		<ul>		<li> cuddZddInitUniv()		<li> cuddZddFreeUniv()		</ul>	      ]  SeeAlso     []  Author      [Fabio Somenzi]  Copyright [ This file was created at the University of Colorado at  Boulder.  The University of Colorado at Boulder makes no warranty  about the suitability of this software for any purpose.  It is  presented on an AS IS basis.]******************************************************************************/#include    "util.h"#define CUDD_MAIN#include    "cuddInt.h"#undef CUDD_MAIN/*---------------------------------------------------------------------------*//* Constant declarations                                                     *//*---------------------------------------------------------------------------*//*---------------------------------------------------------------------------*//* Stucture declarations                                                     *//*---------------------------------------------------------------------------*//*---------------------------------------------------------------------------*//* Type declarations                                                         *//*---------------------------------------------------------------------------*//*---------------------------------------------------------------------------*//* Variable declarations                                                     *//*---------------------------------------------------------------------------*/#ifndef lintstatic char rcsid[] DD_UNUSED = "$Id: cuddInit.c,v 1.1.1.1 2003/02/24 22:23:52 wjiang Exp $";#endif/*---------------------------------------------------------------------------*//* Macro declarations                                                        *//*---------------------------------------------------------------------------*//**AutomaticStart*************************************************************//*---------------------------------------------------------------------------*//* Static function prototypes                                                *//*---------------------------------------------------------------------------*//**AutomaticEnd***************************************************************//*---------------------------------------------------------------------------*//* Definition of exported functions                                          *//*---------------------------------------------------------------------------*//**Function********************************************************************  Synopsis    [Creates a new DD manager.]  Description [Creates a new DD manager, initializes the table, the  basic constants and the projection functions. If maxMemory is 0,  Cudd_Init decides suitable values for the maximum size of the cache  and for the limit for fast unique table growth based on the available  memory. Returns a pointer to the manager if successful; NULL  otherwise.]  SideEffects [None]  SeeAlso     [Cudd_Quit]******************************************************************************/DdManager *Cudd_Init(  unsigned int numVars /* initial number of BDD variables (i.e., subtables) */,  unsigned int numVarsZ /* initial number of ZDD variables (i.e., subtables) */,  unsigned int numSlots /* initial size of the unique tables */,  unsigned int cacheSize /* initial size of the cache */,  unsigned long maxMemory /* target maximum memory occupation */){    DdManager *unique;    int i,result;    DdNode *one, *zero;    unsigned int maxCacheSize;    unsigned int looseUpTo;    extern void (*MMoutOfMemory)(long);    void (*saveHandler)(long);    if (maxMemory == 0) {	maxMemory = getSoftDataLimit();    }    looseUpTo = (unsigned int) ((maxMemory / sizeof(DdNode)) /				DD_MAX_LOOSE_FRACTION);    unique = cuddInitTable(numVars,numVarsZ,numSlots,looseUpTo);    unique->maxmem = (unsigned) maxMemory / 10 * 9;    if (unique == NULL) return(NULL);    maxCacheSize = (unsigned int) ((maxMemory / sizeof(DdCache)) /				   DD_MAX_CACHE_FRACTION);    result = cuddInitCache(unique,cacheSize,maxCacheSize);    if (result == 0) return(NULL);    saveHandler = MMoutOfMemory;    MMoutOfMemory = Cudd_OutOfMem;    unique->stash = ALLOC(char,(maxMemory / DD_STASH_FRACTION) + 4);    MMoutOfMemory = saveHandler;    if (unique->stash == NULL) {	(void) fprintf(unique->err,"Unable to set aside memory\n");    }    /* Initialize constants. */    unique->one = cuddUniqueConst(unique,1.0);    if (unique->one == NULL) return(0);    cuddRef(unique->one);    unique->zero = cuddUniqueConst(unique,0.0);    if (unique->zero == NULL) return(0);    cuddRef(unique->zero);#ifdef HAVE_IEEE_754    if (DD_PLUS_INF_VAL != DD_PLUS_INF_VAL * 3 ||	DD_PLUS_INF_VAL != DD_PLUS_INF_VAL / 3) {	(void) fprintf(unique->err,"Warning: Crippled infinite values\n");	(void) fprintf(unique->err,"Recompile without -DHAVE_IEEE_754\n");    }#endif    unique->plusinfinity = cuddUniqueConst(unique,DD_PLUS_INF_VAL);    if (unique->plusinfinity == NULL) return(0);    cuddRef(unique->plusinfinity);    unique->minusinfinity = cuddUniqueConst(unique,DD_MINUS_INF_VAL);    if (unique->minusinfinity == NULL) return(0);    cuddRef(unique->minusinfinity);    unique->background = unique->zero;    /* The logical zero is different from the CUDD_VALUE_TYPE zero! */    one = unique->one;    zero = Cudd_Not(one);    /* Create the projection functions. */    unique->vars = ALLOC(DdNodePtr,unique->maxSize);    if (unique->vars == NULL) {	unique->errorCode = CUDD_MEMORY_OUT;	return(NULL);    }    for (i = 0; i < unique->size; i++) {	unique->vars[i] = cuddUniqueInter(unique,i,one,zero);	if (unique->vars[i] == NULL) return(0);	cuddRef(unique->vars[i]);    }    if (unique->sizeZ)	cuddZddInitUniv(unique);    unique->memused += sizeof(DdNode *) * unique->maxSize;    return(unique);} /* end of Cudd_Init *//**Function********************************************************************  Synopsis    [Deletes resources associated with a DD manager.]  Description [Deletes resources associated with a DD manager and  resets the global statistical counters. (Otherwise, another manaqger  subsequently created would inherit the stats of this one.)]  SideEffects [None]  SeeAlso     [Cudd_Init]******************************************************************************/voidCudd_Quit(  DdManager * unique){    if (unique->stash != NULL) FREE(unique->stash);    cuddFreeTable(unique);} /* end of Cudd_Quit *//*---------------------------------------------------------------------------*//* Definition of internal functions                                          *//*---------------------------------------------------------------------------*//**Function********************************************************************  Synopsis    [Initializes the ZDD universe.]  Description [Initializes the ZDD universe. Returns 1 if successful; 0  otherwise.]  SideEffects [None]  SeeAlso     [cuddZddFreeUniv]******************************************************************************/intcuddZddInitUniv(  DdManager * zdd){    DdNode	*p, *res;    int		i;    zdd->univ = ALLOC(DdNodePtr, zdd->sizeZ);    if (zdd->univ == NULL) {	zdd->errorCode = CUDD_MEMORY_OUT;	return(0);    }    res = DD_ONE(zdd);    cuddRef(res);    for (i = zdd->sizeZ - 1; i >= 0; i--) {	unsigned int index = zdd->invpermZ[i];	p = res;	res = cuddUniqueInterZdd(zdd, index, p, p);	if (res == NULL) {	    Cudd_RecursiveDerefZdd(zdd,p);	    FREE(zdd->univ);	    return(0);	}	cuddRef(res);	cuddDeref(p);	zdd->univ[i] = res;    }#ifdef DD_VERBOSE    cuddZddP(zdd, zdd->univ[0]);#endif    return(1);} /* end of cuddZddInitUniv *//**Function********************************************************************  Synopsis    [Frees the ZDD universe.]  Description [Frees the ZDD universe.]  SideEffects [None]  SeeAlso     [cuddZddInitUniv]******************************************************************************/voidcuddZddFreeUniv(  DdManager * zdd){    if (zdd->univ) {	Cudd_RecursiveDerefZdd(zdd, zdd->univ[0]);	FREE(zdd->univ);    }} /* end of cuddZddFreeUniv *//*---------------------------------------------------------------------------*//* Definition of static functions                                            *//*---------------------------------------------------------------------------*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -