summaryrefslogtreecommitdiffstats
path: root/src/proof/acec/acecInt.h
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2017-01-11 13:36:54 +0700
committerAlan Mishchenko <alanmi@berkeley.edu>2017-01-11 13:36:54 +0700
commit89d08cfd06ecb1653ef0613049447c91bc114f46 (patch)
treef2ce4af11434ea14401e505eba7a0ca6270cfaa8 /src/proof/acec/acecInt.h
parent4bfb97d3e1b313f4b72ee0fa7adfa8949236db85 (diff)
downloadabc-89d08cfd06ecb1653ef0613049447c91bc114f46.tar.gz
abc-89d08cfd06ecb1653ef0613049447c91bc114f46.tar.bz2
abc-89d08cfd06ecb1653ef0613049447c91bc114f46.zip
Updates to arithmetic verification.
Diffstat (limited to 'src/proof/acec/acecInt.h')
-rw-r--r--src/proof/acec/acecInt.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/proof/acec/acecInt.h b/src/proof/acec/acecInt.h
index 08f163e0..3f10c6aa 100644
--- a/src/proof/acec/acecInt.h
+++ b/src/proof/acec/acecInt.h
@@ -41,12 +41,14 @@ typedef struct Acec_Box_t_ Acec_Box_t;
struct Acec_Box_t_
{
Gia_Man_t * pGia; // AIG manager
+ Vec_Wec_t * vAdds; // adders by rank
Vec_Wec_t * vLeafs; // leaf literals by rank
Vec_Wec_t * vRoots; // root literals by rank
Vec_Wec_t * vLeafLits; // leaf literals by rank
Vec_Wec_t * vRootLits; // root literals by rank
Vec_Wec_t * vShared; // shared leaves
Vec_Wec_t * vUnique; // unique leaves
+ Vec_Bit_t * vInvHadds; // complemented half adders
};
////////////////////////////////////////////////////////////////////////