mirror of https://github.com/YosysHQ/abc.git
fix error build
This commit is contained in:
parent
2918589334
commit
bd52945300
|
|
@ -81,7 +81,7 @@ static inline word Acb_XecGiaLitWord( Vec_Wrd_t * vSims, int nWords, int Lit, in
|
||||||
word Res = Vec_WrdEntry( vSims, Abc_Lit2Var(Lit) * nWords + w );
|
word Res = Vec_WrdEntry( vSims, Abc_Lit2Var(Lit) * nWords + w );
|
||||||
return Abc_LitIsCompl(Lit) ? ~Res : Res;
|
return Abc_LitIsCompl(Lit) ? ~Res : Res;
|
||||||
}
|
}
|
||||||
int * Acb_NtkSolveCadicalLimit( Gia_Man_t * p, int fUseHeavyOpt, int fVerbose, int * pStatus, int nSatTimeLimit, char * pLabel, int fUseXecOutputClauses )
|
int * Acb_NtkSolveCadicalLimit( Gia_Man_t * p, int fUseHeavyOpt, int fVerbose, int * pStatus, int nSatTimeLimit, const char * pLabel, int fUseXecOutputClauses )
|
||||||
{
|
{
|
||||||
Aig_Man_t * pMan = NULL;
|
Aig_Man_t * pMan = NULL;
|
||||||
Cnf_Dat_t * pCnf = NULL;
|
Cnf_Dat_t * pCnf = NULL;
|
||||||
|
|
|
||||||
|
|
@ -59,7 +59,7 @@ static inline void Acb_XecMergeTargetStatus( int StatusTarget, int fHasModel, in
|
||||||
*pStatus = ACB_XEC_NEQ;
|
*pStatus = ACB_XEC_NEQ;
|
||||||
}
|
}
|
||||||
|
|
||||||
extern int * Acb_NtkSolveCadicalLimit( Gia_Man_t * p, int fUseHeavyOpt, int fVerbose, int * pStatus, int nSatTimeLimit, char * pLabel, int fUseXecOutputClauses );
|
extern int * Acb_NtkSolveCadicalLimit( Gia_Man_t * p, int fUseHeavyOpt, int fVerbose, int * pStatus, int nSatTimeLimit, const char * pLabel, int fUseXecOutputClauses );
|
||||||
extern int Acb_CnfCoDriverLit( Cnf_Dat_t * pCnf, int iCo, int * pLit );
|
extern int Acb_CnfCoDriverLit( Cnf_Dat_t * pCnf, int iCo, int * pLit );
|
||||||
extern int Acb_GiaAllPosConst0( Gia_Man_t * p );
|
extern int Acb_GiaAllPosConst0( Gia_Man_t * p );
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue