Commit fef0c368 by Alan Mishchenko

Improvements to the SAT sweeper.

parent bab4c1dd
...@@ -88,10 +88,6 @@ LINK32=link.exe ...@@ -88,10 +88,6 @@ LINK32=link.exe
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
# Begin Source File # Begin Source File
SOURCE=.\src\proof\cec\cecSatG2.c
# End Source File
# Begin Source File
SOURCE=.\src\base\main\main.c SOURCE=.\src\base\main\main.c
# End Source File # End Source File
# End Group # End Group
......
...@@ -235,6 +235,7 @@ struct Gia_Man_t_ ...@@ -235,6 +235,7 @@ struct Gia_Man_t_
Vec_Wrd_t * vSuppWords; // support information Vec_Wrd_t * vSuppWords; // support information
Vec_Int_t vCopiesTwo; // intermediate copies Vec_Int_t vCopiesTwo; // intermediate copies
Vec_Int_t vSuppVars; // used variables Vec_Int_t vSuppVars; // used variables
Vec_Int_t vVarMap; // used variables
Gia_Dat_t * pUData; Gia_Dat_t * pUData;
}; };
......
...@@ -129,6 +129,7 @@ void Gia_ManStop( Gia_Man_t * p ) ...@@ -129,6 +129,7 @@ void Gia_ManStop( Gia_Man_t * p )
Vec_IntFreeP( &p->vVar2Obj ); Vec_IntFreeP( &p->vVar2Obj );
Vec_IntErase( &p->vCopiesTwo ); Vec_IntErase( &p->vCopiesTwo );
Vec_IntErase( &p->vSuppVars ); Vec_IntErase( &p->vSuppVars );
Vec_IntErase( &p->vVarMap );
Vec_WrdFreeP( &p->vSuppWords ); Vec_WrdFreeP( &p->vSuppWords );
Vec_IntFreeP( &p->vTtNums ); Vec_IntFreeP( &p->vTtNums );
Vec_IntFreeP( &p->vTtNodes ); Vec_IntFreeP( &p->vTtNodes );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment