summaryrefslogtreecommitdiffstats
path: root/src/aig/gia/giaAbs.h
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2012-09-15 23:27:46 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2012-09-15 23:27:46 -0700
commit69bbfa98564efc7a8b865f06b01c0e404ac1e658 (patch)
tree188c18f4c23b986b1b1647738e4e14fe63513ec5 /src/aig/gia/giaAbs.h
parentec95f569dd543d6a6acc8b9910cb605f14e59e61 (diff)
downloadabc-69bbfa98564efc7a8b865f06b01c0e404ac1e658.tar.gz
abc-69bbfa98564efc7a8b865f06b01c0e404ac1e658.tar.bz2
abc-69bbfa98564efc7a8b865f06b01c0e404ac1e658.zip
Created new abstraction package from the code that was all over the place.
Diffstat (limited to 'src/aig/gia/giaAbs.h')
-rw-r--r--src/aig/gia/giaAbs.h89
1 files changed, 0 insertions, 89 deletions
diff --git a/src/aig/gia/giaAbs.h b/src/aig/gia/giaAbs.h
deleted file mode 100644
index 366a4d8a..00000000
--- a/src/aig/gia/giaAbs.h
+++ /dev/null
@@ -1,89 +0,0 @@
-/**CFile****************************************************************
-
- FileName [giaAbs.h]
-
- SystemName [ABC: Logic synthesis and verification system.]
-
- PackageName [Scalable AIG package.]
-
- Synopsis [External declarations.]
-
- Author [Alan Mishchenko]
-
- Affiliation [UC Berkeley]
-
- Date [Ver. 1.0. Started - June 20, 2005.]
-
- Revision [$Id: giaAbs.h,v 1.00 2005/06/20 00:00:00 alanmi Exp $]
-
-***********************************************************************/
-
-#ifndef ABC__aig__gia__giaAbs_h
-#define ABC__aig__gia__giaAbs_h
-
-
-////////////////////////////////////////////////////////////////////////
-/// INCLUDES ///
-////////////////////////////////////////////////////////////////////////
-
-////////////////////////////////////////////////////////////////////////
-/// PARAMETERS ///
-////////////////////////////////////////////////////////////////////////
-
-
-
-ABC_NAMESPACE_HEADER_START
-
-
-////////////////////////////////////////////////////////////////////////
-/// BASIC TYPES ///
-////////////////////////////////////////////////////////////////////////
-
-// abstraction parameters
-typedef struct Gia_ParAbs_t_ Gia_ParAbs_t;
-struct Gia_ParAbs_t_
-{
- int Algo; // the algorithm to be used
- int nFramesMax; // timeframes for PBA
- int nConfMax; // conflicts for PBA
- int fDynamic; // dynamic unfolding for PBA
- int fConstr; // use constraints
- int nFramesBmc; // timeframes for BMC
- int nConfMaxBmc; // conflicts for BMC
- int nStableMax; // the number of stable frames to quit
- int nRatio; // ratio of flops to quit
- int TimeOut; // approximate timeout in seconds
- int TimeOutVT; // approximate timeout in seconds
- int nBobPar; // Bob's parameter
- int fUseBdds; // use BDDs to refine abstraction
- int fUseDprove; // use 'dprove' to refine abstraction
- int fUseStart; // use starting frame
- int fVerbose; // verbose output
- int fVeryVerbose; // printing additional information
- int Status; // the problem status
- int nFramesDone; // the number of frames covered
-};
-
-extern void Gia_ManAbsSetDefaultParams( Gia_ParAbs_t * p );
-
-////////////////////////////////////////////////////////////////////////
-/// MACRO DEFINITIONS ///
-////////////////////////////////////////////////////////////////////////
-
-////////////////////////////////////////////////////////////////////////
-/// FUNCTION DECLARATIONS ///
-////////////////////////////////////////////////////////////////////////
-
-
-
-
-ABC_NAMESPACE_HEADER_END
-
-
-
-#endif
-
-////////////////////////////////////////////////////////////////////////
-/// END OF FILE ///
-////////////////////////////////////////////////////////////////////////
-