diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2017-08-04 14:40:51 +0900 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2017-08-04 14:40:51 +0900 |
commit | 9edf6ea091000eac047eb6a372a9dc79767d0e99 (patch) | |
tree | 181e6970f9ebdce186cb84fa0af79a95c15f9c6d /src/base/main/mainInt.h | |
parent | ee4d794111402d694c4ca9d839ae9cf95d1aee2b (diff) | |
download | abc-9edf6ea091000eac047eb6a372a9dc79767d0e99.tar.gz abc-9edf6ea091000eac047eb6a372a9dc79767d0e99.tar.bz2 abc-9edf6ea091000eac047eb6a372a9dc79767d0e99.zip |
New commands for backing up networks.
Diffstat (limited to 'src/base/main/mainInt.h')
-rw-r--r-- | src/base/main/mainInt.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/base/main/mainInt.h b/src/base/main/mainInt.h index 30671fcb..efc5fc7f 100644 --- a/src/base/main/mainInt.h +++ b/src/base/main/mainInt.h @@ -106,9 +106,14 @@ struct Abc_Frame_t_ Gia_Man_t * pGia; // alternative current network as a light-weight AIG Gia_Man_t * pGia2; // copy of the above Gia_Man_t * pGiaBest; // copy of the above + Gia_Man_t * pGiaBest2; // copy of the above + Gia_Man_t * pGiaSaved; // copy of the above int nBestLuts; // best LUT count int nBestEdges; // best edge count int nBestLevels; // best level count + int nBestLuts2; // best LUT count + int nBestEdges2; // best edge count + int nBestLevels2; // best level count Abc_Cex_t * pCex; // a counter-example to fail the current network Abc_Cex_t * pCex2; // copy of the above Vec_Ptr_t * vCexVec; // a vector of counter-examples if more than one PO fails |