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();
}
Aggregations