summaryrefslogtreecommitdiffstats
path: root/src/base/wlc/wlcNtk.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2015-07-14 19:55:05 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2015-07-14 19:55:05 -0700
commite37bd1fb64dc919b2a18ef5a0eaea1311816bf1e (patch)
tree24a4e4ecc75f5bfe699b74d4bfea1c342147c1f3 /src/base/wlc/wlcNtk.c
parent92b85b16a2eb69d51a6fd3c6d44b8aac7c5a3fef (diff)
downloadabc-e37bd1fb64dc919b2a18ef5a0eaea1311816bf1e.tar.gz
abc-e37bd1fb64dc919b2a18ef5a0eaea1311816bf1e.tar.bz2
abc-e37bd1fb64dc919b2a18ef5a0eaea1311816bf1e.zip
Improved bit-blasting of various operators in Wlc_Ntk_t; added SQRT operator (@).
Diffstat (limited to 'src/base/wlc/wlcNtk.c')
-rw-r--r--src/base/wlc/wlcNtk.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/base/wlc/wlcNtk.c b/src/base/wlc/wlcNtk.c
index 4259493a..4b4cfa47 100644
--- a/src/base/wlc/wlcNtk.c
+++ b/src/base/wlc/wlcNtk.c
@@ -73,10 +73,12 @@ static char * Wlc_Names[WLC_OBJ_NUMBER+1] = {
"%", // 41: arithmetic modulus
"**", // 42: arithmetic power
"-", // 43: arithmetic minus
- "table", // 44: bit table
- NULL // 45: unused
+ "sqrt", // 44: integer square root
+ "table", // 45: bit table
+ NULL // 46: unused
};
+
////////////////////////////////////////////////////////////////////////
/// FUNCTION DEFINITIONS ///
////////////////////////////////////////////////////////////////////////