mirror of https://github.com/YosysHQ/abc.git
Cleaning up code and fixing for several typos.
This commit is contained in:
parent
8c8f39ad76
commit
951afa27cb
|
|
@ -383,9 +383,9 @@ nextrun:
|
|||
else if ( status == l_Undef )
|
||||
printf( "Conflict limit (%d) was reached during iteration %d.\n", nConfMax, f+1 );
|
||||
else if ( fUnique || fUniqueAll )
|
||||
printf( "Completed %d interations and added %d uniqueness constraints.\n", f+1, nConstrs );
|
||||
printf( "Completed %d iterations and added %d uniqueness constraints.\n", f+1, nConstrs );
|
||||
else
|
||||
printf( "Completed %d interations.\n", f+1 );
|
||||
printf( "Completed %d iterations.\n", f+1 );
|
||||
}
|
||||
// cleanup
|
||||
sat_solver_delete( pSat );
|
||||
|
|
|
|||
|
|
@ -195,8 +195,6 @@ clkV = Abc_Clock() - clkV;
|
|||
ABC_PRT( "Syn", clkS );
|
||||
// ABC_PRT( "Ver", clkV );
|
||||
}
|
||||
if ( nIters+1 == nItersMax )
|
||||
break;
|
||||
}
|
||||
Abc_NtkDelete( pNtkSyn );
|
||||
// report the results
|
||||
|
|
@ -206,12 +204,10 @@ clkV = Abc_Clock() - clkV;
|
|||
printf( "Parameters: " );
|
||||
Abc_NtkVectorPrintPars( vPiValues, nPars );
|
||||
printf( " Statistics: 0=%d 1=%d\n", nZeros, Vec_IntSize(vPiValues) - nZeros );
|
||||
printf( "Solved after %d interations. ", nIters );
|
||||
printf( "Solved after %d iterations. ", nIters );
|
||||
}
|
||||
else if ( nIters == nItersMax )
|
||||
printf( "Unsolved after %d interations. ", nIters );
|
||||
else if ( nIters == nItersMax )
|
||||
printf( "Quit after %d interatios. ", nItersMax );
|
||||
printf( "Quit after %d iterations. ", nItersMax );
|
||||
else
|
||||
printf( "Implementation does not exist. " );
|
||||
ABC_PRT( "Total runtime", Abc_Clock() - clkTotal );
|
||||
|
|
|
|||
|
|
@ -1094,7 +1094,7 @@ Vec_Int_t * Acb_FindSupport( sat_solver * pSat, int iFirstDiv, Vec_Int_t * vWeig
|
|||
vSuppBest = Vec_IntDup( vSuppStart );
|
||||
printf( "Starting cost = %d.\n", CostBest );
|
||||
|
||||
// interatively find the one with the most ones in the uncovered rows
|
||||
// iteratively find the one with the most ones in the uncovered rows
|
||||
for ( Iter = 0; Iter < 200; Iter++ )
|
||||
{
|
||||
if ( Abc_Clock() > clkLimit )
|
||||
|
|
|
|||
|
|
@ -106,7 +106,7 @@ struct _reo_man
|
|||
int fVerbose; // the verbosity level
|
||||
int fVerify; // the flag toggling verification
|
||||
int fRemapUp; // the flag to enable remapping
|
||||
int nIters; // the number of interations of sifting to perform
|
||||
int nIters; // the number of iterations of sifting to perform
|
||||
|
||||
// parameters given by the user when reordering is called
|
||||
DdManager * dd; // the CUDD BDD manager
|
||||
|
|
|
|||
|
|
@ -94,10 +94,10 @@ struct Dec_Man_t_
|
|||
/// ITERATORS ///
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// interator throught the leaves
|
||||
// iterator through the leaves
|
||||
#define Dec_GraphForEachLeaf( pGraph, pLeaf, i ) \
|
||||
for ( i = 0; (i < (pGraph)->nLeaves) && (((pLeaf) = Dec_GraphNode(pGraph, i)), 1); i++ )
|
||||
// interator throught the internal nodes
|
||||
// iterator through the internal nodes
|
||||
#define Dec_GraphForEachNode( pGraph, pAnd, i ) \
|
||||
for ( i = (pGraph)->nLeaves; (i < (pGraph)->nSize) && (((pAnd) = Dec_GraphNode(pGraph, i)), 1); i++ )
|
||||
|
||||
|
|
|
|||
|
|
@ -94,10 +94,10 @@ struct Dec_Man_t_
|
|||
/// ITERATORS ///
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// interator throught the leaves
|
||||
// iterator through the leaves
|
||||
#define Dec_GraphForEachLeaf( pGraph, pLeaf, i ) \
|
||||
for ( i = 0; (i < (pGraph)->nLeaves) && (((pLeaf) = Dec_GraphNode(pGraph, i)), 1); i++ )
|
||||
// interator throught the internal nodes
|
||||
// iterator through the internal nodes
|
||||
#define Dec_GraphForEachNode( pGraph, pAnd, i ) \
|
||||
for ( i = (pGraph)->nLeaves; (i < (pGraph)->nSize) && (((pAnd) = Dec_GraphNode(pGraph, i)), 1); i++ )
|
||||
|
||||
|
|
|
|||
|
|
@ -123,7 +123,7 @@ if ( fVerbose && !fInitial )
|
|||
// quit after timing analysis
|
||||
if ( i == nIterLimit )
|
||||
break;
|
||||
// skip if 10 interations did not give improvement
|
||||
// skip if 10 iterations did not give improvement
|
||||
if ( i - IterBest > 20 )
|
||||
break;
|
||||
// skip if delay limit is reached
|
||||
|
|
|
|||
|
|
@ -604,7 +604,7 @@ p->timePart += Abc_Clock() - clk2;
|
|||
p->nNodesBeg = Aig_ManNodeNum(p->pAig);
|
||||
p->nRegsBeg = Aig_ManRegNum(p->pAig);
|
||||
|
||||
// perforn interative reduction of the partitions
|
||||
// perform iterative reduction of the partitions
|
||||
p->fRefining = 1;
|
||||
for ( nIter = 0; p->fRefining; nIter++ )
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue