Search in sources :

Example 1 with FullVariantDontCareCreator

use of de.neemann.digital.analyse.quinemc.FullVariantDontCareCreator in project Digital by hneemann.

the class BruteForceGetAllTest method testFullRegression.

/**
 * up to 3 variables we can calculate all tables possible!
 *
 * @throws ExpressionException
 */
public void testFullRegression() throws ExpressionException, FormatterException {
    new FullVariantDontCareCreator() {

        @Override
        public void handleTable(int n, byte[] tab) throws ExpressionException {
            performTestCalculation(n, tab);
        }
    }.create();
    new FullVariantDontCareCreator(4, 241) {

        @Override
        public void handleTable(int n, byte[] tab) throws ExpressionException {
            performTestCalculation(n, tab);
        }
    }.create();
}
Also used : FullVariantDontCareCreator(de.neemann.digital.analyse.quinemc.FullVariantDontCareCreator) ExpressionException(de.neemann.digital.analyse.expression.ExpressionException)

Aggregations

ExpressionException (de.neemann.digital.analyse.expression.ExpressionException)1 FullVariantDontCareCreator (de.neemann.digital.analyse.quinemc.FullVariantDontCareCreator)1