mirror of
https://github.com/hneemann/Digital.git
synced 2025-10-04 10:22:52 -04:00
removed some console output
This commit is contained in:
parent
f3e1cd743b
commit
73f5a13a14
@ -270,8 +270,6 @@ public class QuineMcCluskey {
|
|||||||
availPrimes.addAll(primes);
|
availPrimes.addAll(primes);
|
||||||
primes.clear();
|
primes.clear();
|
||||||
primeSelector.select(primes, availPrimes, columns);
|
primeSelector.select(primes, availPrimes, columns);
|
||||||
if (primes.size() < availPrimes.size())
|
|
||||||
System.out.println("reduced from " + availPrimes.size() + " primes to " + primes.size()+" primes.");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return this;
|
return this;
|
||||||
|
@ -48,9 +48,9 @@ public class QuineMcCluskeyDontCareTest extends TestCase {
|
|||||||
* @throws ExpressionException
|
* @throws ExpressionException
|
||||||
*/
|
*/
|
||||||
public void testRegression() throws ExpressionException {
|
public void testRegression() throws ExpressionException {
|
||||||
for (int n = 4; n < 8; n++) {
|
for (int n = 4; n <= 8; n++) {
|
||||||
// test some tables with n variables
|
// test some tables with n variables
|
||||||
for (int i = 0; i < 200; i++) {
|
for (int i = 0; i < 100; i++) {
|
||||||
performTestCalculationRandom(n);
|
performTestCalculationRandom(n);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user