summaryrefslogtreecommitdiffstats
path: root/src/map/if
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2012-11-01 16:24:36 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2012-11-01 16:24:36 -0700
commitf23a17e0c607b979c3e8a41b4f8522c9a44197cd (patch)
tree61d7bc544b991e441bfaca5d9e6b9bf480d48d68 /src/map/if
parent35c8d6a2fd47ea102e00133bf2d9b118d537db27 (diff)
downloadabc-f23a17e0c607b979c3e8a41b4f8522c9a44197cd.tar.gz
abc-f23a17e0c607b979c3e8a41b4f8522c9a44197cd.tar.bz2
abc-f23a17e0c607b979c3e8a41b4f8522c9a44197cd.zip
Improvements to LMS code.
Diffstat (limited to 'src/map/if')
-rw-r--r--src/map/if/if.h2
-rw-r--r--src/map/if/ifTime.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/map/if/if.h b/src/map/if/if.h
index 9e649e0c..2fee88c4 100644
--- a/src/map/if/if.h
+++ b/src/map/if/if.h
@@ -53,6 +53,8 @@ ABC_NAMESPACE_HEADER_START
// the largest possible user cut cost
#define IF_COST_MAX 8191 // ((1<<13)-1)
+#define IF_BIG_CHAR 120
+
// object types
typedef enum {
IF_NONE, // 0: non-existent object
diff --git a/src/map/if/ifTime.c b/src/map/if/ifTime.c
index ac0d2cb4..edbbe272 100644
--- a/src/map/if/ifTime.c
+++ b/src/map/if/ifTime.c
@@ -28,8 +28,6 @@ ABC_NAMESPACE_IMPL_START
/// DECLARATIONS ///
////////////////////////////////////////////////////////////////////////
-#define IF_BIG_CHAR 120
-
static float s_ExtraDel[2][3] = { {1.0, 1.0, (float)0.1}, {1.0, 1.0, (float)0.1} };
static void If_CutSortInputPins( If_Man_t * p, If_Cut_t * pCut, int * pPinPerm, float * pPinDelays );