summaryrefslogtreecommitdiffstats
path: root/src/aig/bbl/bblif.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/aig/bbl/bblif.h')
-rw-r--r--src/aig/bbl/bblif.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/aig/bbl/bblif.h b/src/aig/bbl/bblif.h
index db3eb2f5..89c58f93 100644
--- a/src/aig/bbl/bblif.h
+++ b/src/aig/bbl/bblif.h
@@ -36,6 +36,14 @@
(3) read a binary BLIF file with a mapped network produced by ABC
(4) return the mapped network to the caller through a set of APIs
+ It should be noted that the BBLIF interface can be used to pass
+ the network from the calling application into ABC without writing it
+ into a file. In this case, ABC should be compiled as a library and
+ linked to the calling application. The BBLIF manager can be given
+ directly to the procedure Bbl_ManToAbc() to convert it into an AIG.
+ Similarly, the resulting mapped network can be converted into
+ BBLIF manager and passed back after the call to Bbl_ManFromAbc().
+
Here these steps are described in more detail:
(1) The BBLIF manager is allocated by calling Bbl_ManStart() and