ABC: A System for Sequential Synthesis and Verification
 
Loading...
Searching...
No Matches
fsimCore.c
Go to the documentation of this file.
1
20
21#include "fsimInt.h"
22
24
25
29
33
46{
47 memset( p, 0, sizeof(Fsim_ParSim_t) );
48 // user-controlled parameters
49 p->nWords = 8; // the number of machine words
50 p->nIters = 32; // the number of timeframes
51 p->TimeLimit = 60; // time limit in seconds
52 p->fCheckMiter = 0; // check if miter outputs are non-zero
53 p->fVerbose = 1; // enables verbose output
54 // internal parameters
55 p->fCompressAig = 0; // compresses internal data
56}
57
70{
71 memset( p, 0, sizeof(Fsim_ParSwitch_t) );
72 // user-controlled parameters
73 p->nWords = 1; // the number of machine words
74 p->nIters = 48; // the number of timeframes
75 p->nPref = 16; // the number of first timeframes to skip
76 p->nRandPiNum = 0; // PI trans prob (0=1/2; 1=1/4; 2=1/8, etc)
77 p->fProbOne = 1; // collect probability of one
78 p->fProbTrans = 1; // collect probatility of switching
79 p->fVerbose = 1; // enables verbose output
80}
81
85
86
88
#define ABC_NAMESPACE_IMPL_START
#define ABC_NAMESPACE_IMPL_END
Cube * p
Definition exorList.c:222
void Fsim_ManSetDefaultParamsSwitch(Fsim_ParSwitch_t *p)
Definition fsimCore.c:69
ABC_NAMESPACE_IMPL_START void Fsim_ManSetDefaultParamsSim(Fsim_ParSim_t *p)
DECLARATIONS ///.
Definition fsimCore.c:45
struct Fsim_ParSwitch_t_ Fsim_ParSwitch_t
Definition fsim.h:59
struct Fsim_ParSim_t_ Fsim_ParSim_t
Definition fsim.h:45
char * memset()