summaryrefslogtreecommitdiffstats
path: root/src/aig/gia/giaDeep.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2019-12-14 20:13:56 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2019-12-14 20:13:56 -0800
commit53d4d6513cb285f49ec5fe4c8211738cd52aad52 (patch)
tree8aed68266613ddcd9a898a9b6f2c829a3f51691f /src/aig/gia/giaDeep.c
parente73fca371023c25e17dab0ae4f1b555b64d68df0 (diff)
downloadabc-53d4d6513cb285f49ec5fe4c8211738cd52aad52.tar.gz
abc-53d4d6513cb285f49ec5fe4c8211738cd52aad52.tar.bz2
abc-53d4d6513cb285f49ec5fe4c8211738cd52aad52.zip
Adding experimental command.
Diffstat (limited to 'src/aig/gia/giaDeep.c')
-rw-r--r--src/aig/gia/giaDeep.c57
1 files changed, 57 insertions, 0 deletions
diff --git a/src/aig/gia/giaDeep.c b/src/aig/gia/giaDeep.c
new file mode 100644
index 00000000..a2972478
--- /dev/null
+++ b/src/aig/gia/giaDeep.c
@@ -0,0 +1,57 @@
+/**CFile****************************************************************
+
+ FileName [giaDeep.c]
+
+ SystemName [ABC: Logic synthesis and verification system.]
+
+ PackageName [Scalable AIG package.]
+
+ Synopsis [Experiments with synthesis.]
+
+ Author [Alan Mishchenko]
+
+ Affiliation [UC Berkeley]
+
+ Date [Ver. 1.0. Started - June 20, 2005.]
+
+ Revision [$Id: giaDeep.c,v 1.00 2005/06/20 00:00:00 alanmi Exp $]
+
+***********************************************************************/
+
+#include "gia.h"
+
+ABC_NAMESPACE_IMPL_START
+
+
+////////////////////////////////////////////////////////////////////////
+/// DECLARATIONS ///
+////////////////////////////////////////////////////////////////////////
+
+
+////////////////////////////////////////////////////////////////////////
+/// FUNCTION DEFINITIONS ///
+////////////////////////////////////////////////////////////////////////
+
+/**Function*************************************************************
+
+ Synopsis []
+
+ Description []
+
+ SideEffects []
+
+ SeeAlso []
+
+***********************************************************************/
+Gia_Man_t * Gia_ManDeepSyn( Gia_Man_t * pGia, int TimeOut, int nAnds, int fVerbose )
+{
+ return NULL;
+}
+
+////////////////////////////////////////////////////////////////////////
+/// END OF FILE ///
+////////////////////////////////////////////////////////////////////////
+
+
+ABC_NAMESPACE_IMPL_END
+