mirror of
https://github.com/hneemann/Digital.git
synced 2025-10-03 09:51:04 -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);
|
||||
primes.clear();
|
||||
primeSelector.select(primes, availPrimes, columns);
|
||||
if (primes.size() < availPrimes.size())
|
||||
System.out.println("reduced from " + availPrimes.size() + " primes to " + primes.size()+" primes.");
|
||||
}
|
||||
|
||||
return this;
|
||||
|
@ -48,9 +48,9 @@ public class QuineMcCluskeyDontCareTest extends TestCase {
|
||||
* @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
|
||||
for (int i = 0; i < 200; i++) {
|
||||
for (int i = 0; i < 100; i++) {
|
||||
performTestCalculationRandom(n);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user