diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2016-08-06 00:24:07 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2016-08-06 00:24:07 -0700 |
commit | d3ec4493b23d4458a65a348a3b4283720f0eb341 (patch) | |
tree | ff48b2585c9c6aee777b0da5030f01a938bf6856 /src/opt/dau/dauCanon.c | |
parent | 2ded05127ae06f7ffea27600936c9b57758185a3 (diff) | |
download | abc-d3ec4493b23d4458a65a348a3b4283720f0eb341.tar.gz abc-d3ec4493b23d4458a65a348a3b4283720f0eb341.tar.bz2 abc-d3ec4493b23d4458a65a348a3b4283720f0eb341.zip |
Windows complier errors.
Diffstat (limited to 'src/opt/dau/dauCanon.c')
-rw-r--r-- | src/opt/dau/dauCanon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/opt/dau/dauCanon.c b/src/opt/dau/dauCanon.c index c6ac8288..011f972a 100644 --- a/src/opt/dau/dauCanon.c +++ b/src/opt/dau/dauCanon.c @@ -1219,8 +1219,9 @@ unsigned Abc_TtCanonicizeHie( Abc_TtMan_t * p, word * pTruthInit, int nVars, cha if ( fExact ) { extern void simpleMinimalGroups(word* x, word* pAux, word* minimal, int* pGroups, int nGroups, permInfo** pis, int nVars, int fFlipOutput, int fFlipInput); word pAuxWord[1024], pAuxWord1[1024]; - int pGroups[nVars]; + int pGroups[16]; int nGroups = 0; + permInfo * pis[17]; // get groups pGroups[0] = 0; for (i = 0; i < nVars - 1; i++) { @@ -1236,7 +1237,6 @@ unsigned Abc_TtCanonicizeHie( Abc_TtMan_t * p, word * pTruthInit, int nVars, cha nGroups++; // compute permInfo from 0 to nVars (incl.) - permInfo * pis[nVars+1]; for (i = 0; i <= nVars; i++) { pis[i] = setPermInfoPtr(i); } |