diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2012-01-21 04:30:10 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2012-01-21 04:30:10 -0800 |
commit | 8014f25f6db719fa62336f997963532a14c568f6 (patch) | |
tree | c691ee91a3a2d452a2bd24ac89a8c717beaa7af7 /src/opt/cut | |
parent | c44cc5de9429e6b4f1c05045fcf43c9cb96437b5 (diff) | |
download | abc-8014f25f6db719fa62336f997963532a14c568f6.tar.gz abc-8014f25f6db719fa62336f997963532a14c568f6.tar.bz2 abc-8014f25f6db719fa62336f997963532a14c568f6.zip |
Major restructuring of the code.
Diffstat (limited to 'src/opt/cut')
-rw-r--r-- | src/opt/cut/abcCut.c | 2 | ||||
-rw-r--r-- | src/opt/cut/cut.h | 4 | ||||
-rw-r--r-- | src/opt/cut/cutInt.h | 8 | ||||
-rw-r--r-- | src/opt/cut/cutList.h | 4 | ||||
-rw-r--r-- | src/opt/cut/cutPre22.c | 2 |
5 files changed, 10 insertions, 10 deletions
diff --git a/src/opt/cut/abcCut.c b/src/opt/cut/abcCut.c index 3b80fe8d..0b57b844 100644 --- a/src/opt/cut/abcCut.c +++ b/src/opt/cut/abcCut.c @@ -18,7 +18,7 @@ ***********************************************************************/ -#include "abc.h" +#include "base/abc/abc.h" #include "cut.h" ABC_NAMESPACE_IMPL_START diff --git a/src/opt/cut/cut.h b/src/opt/cut/cut.h index 2ba3e341..cd87e5a0 100644 --- a/src/opt/cut/cut.h +++ b/src/opt/cut/cut.h @@ -18,8 +18,8 @@ ***********************************************************************/ -#ifndef __CUT_H__ -#define __CUT_H__ +#ifndef ABC__opt__cut__cut_h +#define ABC__opt__cut__cut_h //////////////////////////////////////////////////////////////////////// diff --git a/src/opt/cut/cutInt.h b/src/opt/cut/cutInt.h index 4705c019..39606b00 100644 --- a/src/opt/cut/cutInt.h +++ b/src/opt/cut/cutInt.h @@ -18,8 +18,8 @@ ***********************************************************************/ -#ifndef __CUT_INT_H__ -#define __CUT_INT_H__ +#ifndef ABC__opt__cut__cutInt_h +#define ABC__opt__cut__cutInt_h //////////////////////////////////////////////////////////////////////// @@ -27,8 +27,8 @@ //////////////////////////////////////////////////////////////////////// #include <stdio.h> -#include "extra.h" -#include "vec.h" +#include "src/misc/extra/extra.h" +#include "src/misc/vec/vec.h" #include "cut.h" #include "cutList.h" diff --git a/src/opt/cut/cutList.h b/src/opt/cut/cutList.h index 0f0ccedf..3da27134 100644 --- a/src/opt/cut/cutList.h +++ b/src/opt/cut/cutList.h @@ -18,8 +18,8 @@ ***********************************************************************/ -#ifndef __CUT_LIST_H__ -#define __CUT_LIST_H__ +#ifndef ABC__opt__cut__cutList_h +#define ABC__opt__cut__cutList_h ABC_NAMESPACE_HEADER_START diff --git a/src/opt/cut/cutPre22.c b/src/opt/cut/cutPre22.c index fdb9bd8c..d51d9056 100644 --- a/src/opt/cut/cutPre22.c +++ b/src/opt/cut/cutPre22.c @@ -192,7 +192,7 @@ void Cut_CellLoad() // derive the cell pCell = (Cut_Cell_t *)Extra_MmFixedEntryFetch( p->pMem ); memset( pCell, 0, sizeof(Cut_Cell_t) ); - pCell->nVars = Extra_Base2Log(Length*4); + pCell->nVars = Abc_Base2Log(Length*4); pCell->nUsed = 1; // Extra_TruthCopy( pCell->uTruth, pTruth, nVars ); Extra_ReadHexadecimal( pCell->uTruth, pString, pCell->nVars ); |