mirror of https://github.com/YosysHQ/abc.git
Fixed &reachy to perform reparametrization in case reachability is disabled.
This commit is contained in:
parent
5b75410a5e
commit
f75e55bb4b
|
|
@ -1059,11 +1059,11 @@ int Llb_Nonlin4CoreReach( Aig_Man_t * pAig, Gia_ParLlb_t * pPars )
|
||||||
printf( "The number of objects is more than 2^15. Clustering cannot be used.\n" );
|
printf( "The number of objects is more than 2^15. Clustering cannot be used.\n" );
|
||||||
return RetValue;
|
return RetValue;
|
||||||
}
|
}
|
||||||
if ( !pPars->fSkipReach )
|
|
||||||
{
|
{
|
||||||
int clk = clock();
|
int clk = clock();
|
||||||
pMnn = Llb_MnxStart( pAig, pPars );
|
pMnn = Llb_MnxStart( pAig, pPars );
|
||||||
//Llb_MnxCheckNextStateVars( pMnn );
|
//Llb_MnxCheckNextStateVars( pMnn );
|
||||||
|
if ( !pPars->fSkipReach )
|
||||||
RetValue = Llb_Nonlin4Reachability( pMnn );
|
RetValue = Llb_Nonlin4Reachability( pMnn );
|
||||||
pMnn->timeTotal = clock() - clk;
|
pMnn->timeTotal = clock() - clk;
|
||||||
Llb_MnxStop( pMnn );
|
Llb_MnxStop( pMnn );
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue