diff options
author | Patrick Li <pat@FreeBSD.org> | 2002-12-12 04:25:32 +0000 |
---|---|---|
committer | Patrick Li <pat@FreeBSD.org> | 2002-12-12 04:25:32 +0000 |
commit | aad9609aa9d6fff1fc47cda02e2069f0710b24ce (patch) | |
tree | 8c1f6078146fc2810d7e40f07ac59dcc21d28aa0 /cad/qmls | |
parent | c0d543be033f0d4a61a5d2c7d0cfb3aeeda7a7d9 (diff) | |
download | ports-aad9609aa9d6fff1fc47cda02e2069f0710b24ce.tar.gz ports-aad9609aa9d6fff1fc47cda02e2069f0710b24ce.zip |
Notes
Diffstat (limited to 'cad/qmls')
-rw-r--r-- | cad/qmls/files/patch-mccluskey.cpp | 11 | ||||
-rw-r--r-- | cad/qmls/files/patch-quinegroup.cpp | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/cad/qmls/files/patch-mccluskey.cpp b/cad/qmls/files/patch-mccluskey.cpp new file mode 100644 index 000000000000..57746861f04c --- /dev/null +++ b/cad/qmls/files/patch-mccluskey.cpp @@ -0,0 +1,11 @@ +--- qmls/mccluskey.cpp.orig Wed Dec 11 21:46:22 2002 ++++ qmls/mccluskey.cpp Wed Dec 11 21:47:15 2002 +@@ -200,7 +200,7 @@ + value = primeImplicants[implicants[i]]->ValueAt(0); + diffBits = primeImplicants[implicants[i]]->GetDiffBits(numDiffBits); + +- mask = (unum)pow(2,numBits-1); ++ mask = (unum)pow(2.0,(int)numBits-1); + for (int j=(int)numBits-1; j>=0; j--) + { + bool dBit=false; diff --git a/cad/qmls/files/patch-quinegroup.cpp b/cad/qmls/files/patch-quinegroup.cpp new file mode 100644 index 000000000000..2d815d394995 --- /dev/null +++ b/cad/qmls/files/patch-quinegroup.cpp @@ -0,0 +1,11 @@ +--- qmls/quinegroup.cpp.orig Wed Dec 11 21:42:49 2002 ++++ qmls/quinegroup.cpp Wed Dec 11 21:44:24 2002 +@@ -111,7 +111,7 @@ + unsigned int headData = head->GetData(); + for (i=0; i<numDiffBits; i++) + { +- unsigned int numToSkip = (unsigned int)pow(2,i); ++ unsigned int numToSkip = (unsigned int)pow(2.0,(int)i); + diffBits[i] = ValueAt(numToSkip) - headData; + } + |