diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2014-06-10 21:32:14 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2014-06-10 21:32:14 -0700 |
commit | 577e3e9a7a35fa68105668245eade3f68c952ac3 (patch) | |
tree | 4f59890e9e1eb2f2e8dabd7ac7e3028aec465d84 | |
parent | 93d89eaaeb6f87d972d4ef29d7c858d2cceabe57 (diff) | |
download | abc-577e3e9a7a35fa68105668245eade3f68c952ac3.tar.gz abc-577e3e9a7a35fa68105668245eade3f68c952ac3.tar.bz2 abc-577e3e9a7a35fa68105668245eade3f68c952ac3.zip |
Various modifications.
-rw-r--r-- | src/aig/gia/giaLf.c | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/src/aig/gia/giaLf.c b/src/aig/gia/giaLf.c new file mode 100644 index 00000000..99f585d2 --- /dev/null +++ b/src/aig/gia/giaLf.c @@ -0,0 +1,61 @@ +/**CFile**************************************************************** + + FileName [giaLf.c] + + SystemName [ABC: Logic synthesis and verification system.] + + PackageName [Scalable AIG package.] + + Synopsis [Cut computation.] + + Author [Alan Mishchenko] + + Affiliation [UC Berkeley] + + Date [Ver. 1.0. Started - June 20, 2005.] + + Revision [$Id: giaLf.c,v 1.00 2005/06/20 00:00:00 alanmi Exp $] + +***********************************************************************/ + +#include "gia.h" +#include "misc/vec/vecSet.h" + +ABC_NAMESPACE_IMPL_START + +//////////////////////////////////////////////////////////////////////// +/// DECLARATIONS /// +//////////////////////////////////////////////////////////////////////// + + +//////////////////////////////////////////////////////////////////////// +/// FUNCTION DEFINITIONS /// +//////////////////////////////////////////////////////////////////////// + + +/**Function************************************************************* + + Synopsis [] + + Description [] + + SideEffects [] + + SeeAlso [] + +***********************************************************************/ +void Lf_ManSetDefaultPars( Jf_Par_t * pPars ) +{ +} +Gia_Man_t * Lf_ManPerformMapping( Gia_Man_t * pGia, Jf_Par_t * pPars ) +{ + return NULL; +} + +//////////////////////////////////////////////////////////////////////// +/// END OF FILE /// +//////////////////////////////////////////////////////////////////////// + + +ABC_NAMESPACE_IMPL_END + |