summaryrefslogtreecommitdiffstats
path: root/src/misc/extra/extraUtilMisc.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2012-08-08 01:42:14 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2012-08-08 01:42:14 -0700
commit41fa9a1016d27bd6385e5b49969394d75bba99fd (patch)
treeeb54fa446e99e6361cdc15419bc6f1553006d350 /src/misc/extra/extraUtilMisc.c
parent094bdc05728d850b25d099d24d20e60784d6d8cf (diff)
downloadabc-41fa9a1016d27bd6385e5b49969394d75bba99fd.tar.gz
abc-41fa9a1016d27bd6385e5b49969394d75bba99fd.tar.bz2
abc-41fa9a1016d27bd6385e5b49969394d75bba99fd.zip
New command 'testnpn' to compare semi-canonical forms.
Diffstat (limited to 'src/misc/extra/extraUtilMisc.c')
-rw-r--r--src/misc/extra/extraUtilMisc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc/extra/extraUtilMisc.c b/src/misc/extra/extraUtilMisc.c
index 729d0c04..e484bcb2 100644
--- a/src/misc/extra/extraUtilMisc.c
+++ b/src/misc/extra/extraUtilMisc.c
@@ -2283,7 +2283,7 @@ static inline word Extra_Truth6ChangePhase( word t, int v )
assert( v < 6 );
return ((t & ~Truth6[v]) << (1 << v)) | ((t & Truth6[v]) >> (1 << v));
}
-static inline word Extra_Truth6Minimum( word t, int * pComp, int * pPerm )
+word Extra_Truth6Minimum( word t, int * pComp, int * pPerm )
{
word tMin = ~(word)0;
word tCur, tTemp1, tTemp2;