summaryrefslogtreecommitdiffstats
path: root/src/base/acb/acbPar.h
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2017-03-26 20:32:46 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2017-03-26 20:32:46 -0700
commit036be3a54124fa5bd609e7926c94190581168bc5 (patch)
tree32d44cdbd1bc28fa40551c69807f83d972306ed8 /src/base/acb/acbPar.h
parentd0ea4853ec8da057f76f7846d895c0207670cb11 (diff)
downloadabc-036be3a54124fa5bd609e7926c94190581168bc5.tar.gz
abc-036be3a54124fa5bd609e7926c94190581168bc5.tar.bz2
abc-036be3a54124fa5bd609e7926c94190581168bc5.zip
Experiments with don't-cares.
Diffstat (limited to 'src/base/acb/acbPar.h')
-rw-r--r--src/base/acb/acbPar.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/src/base/acb/acbPar.h b/src/base/acb/acbPar.h
new file mode 100644
index 00000000..4855170c
--- /dev/null
+++ b/src/base/acb/acbPar.h
@@ -0,0 +1,70 @@
+/**CFile****************************************************************
+
+ FileName [acbPar.h]
+
+ SystemName [ABC: Logic synthesis and verification system.]
+
+ PackageName [Hierarchical word-level netlist.]
+
+ Synopsis [External declarations.]
+
+ Author [Alan Mishchenko]
+
+ Affiliation [UC Berkeley]
+
+ Date [Ver. 1.0. Started - July 21, 2015.]
+
+ Revision [$Id: acbPar.h,v 1.00 2014/11/29 00:00:00 alanmi Exp $]
+
+***********************************************************************/
+
+#ifndef ABC__base__acb__acbPar_h
+#define ABC__base__acb__acbPar_h
+
+////////////////////////////////////////////////////////////////////////
+/// INCLUDES ///
+////////////////////////////////////////////////////////////////////////
+
+////////////////////////////////////////////////////////////////////////
+/// PARAMETERS ///
+////////////////////////////////////////////////////////////////////////
+
+ABC_NAMESPACE_HEADER_START
+
+////////////////////////////////////////////////////////////////////////
+/// BASIC TYPES ///
+////////////////////////////////////////////////////////////////////////
+
+typedef struct Acb_Par_t_ Acb_Par_t;
+struct Acb_Par_t_
+{
+ int nLutSize; // LUT size
+ int nTfoLevMax; // the maximum fanout levels
+ int nTfiLevMax; // the maximum fanin levels
+ int nFanoutMax; // the maximum number of fanouts
+ int nDivMax; // the maximum divisor count
+ int nTabooMax; // the minimum MFFC size
+ int nGrowthLevel; // the maximum allowed growth in level
+ int nBTLimit; // the maximum number of conflicts in one SAT run
+ int nNodesMax; // the maximum number of nodes to try
+ int iNodeOne; // one particular node to try
+ int fArea; // performs optimization for area
+ int fMoreEffort; // performs high-affort minimization
+ int fVerbose; // enable basic stats
+ int fVeryVerbose; // enable detailed stats
+};
+
+
+/*=== acbAbc.c =============================================================*/
+extern void Acb_ParSetDefault( Acb_Par_t * pPars );
+
+
+ABC_NAMESPACE_HEADER_END
+
+#endif
+
+////////////////////////////////////////////////////////////////////////
+/// END OF FILE ///
+////////////////////////////////////////////////////////////////////////
+
+