use of com.sri.ai.grinder.sgdpllt.core.constraint.ContextSplitting in project aic-expresso by aic-sri-international.
the class AbstractLinearStepSolver method step.
@Override
public Step<T> step(Context context) {
Step<T> result;
if (current != n) {
Expression unsimplifiedLiteral = makeLiteral();
Expression literal = context.getTheory().simplify(unsimplifiedLiteral, context);
ContextSplitting split = new ContextSplitting(literal, context);
switch(split.getResult()) {
case CONSTRAINT_IS_CONTRADICTORY:
result = null;
break;
case LITERAL_IS_TRUE:
result = makeSubStepSolverWhenLiteralIsTrue().step(context);
break;
case LITERAL_IS_FALSE:
result = makeSubStepSolverWhenLiteralIsFalse().step(context);
break;
case LITERAL_IS_UNDEFINED:
result = new ItDependsOn<T>(literal, split, makeSubStepSolverWhenLiteralIsTrue(), makeSubStepSolverWhenLiteralIsFalse());
break;
default:
throw new Error("Unexpected ConstraintSplitting result.");
}
} else {
result = makeSolutionWhenAllElementsHaveBeenChecked();
}
return result;
}
use of com.sri.ai.grinder.sgdpllt.core.constraint.ContextSplitting in project aic-expresso by aic-sri-international.
the class FirstOfTest method testSimpleFirstOfConditionalRewriter.
@Test
public void testSimpleFirstOfConditionalRewriter() {
class JumperAtStepSolver implements ExpressionLiteralSplitterStepSolver {
private Expression expression;
private int jumpPoint;
public JumperAtStepSolver(Expression expression, int jumpPoint) {
this.expression = expression;
this.jumpPoint = jumpPoint;
}
@Override
public JumperAtStepSolver clone() {
JumperAtStepSolver result = null;
try {
result = (JumperAtStepSolver) super.clone();
} catch (CloneNotSupportedException e) {
e.printStackTrace();
}
return result;
}
@Override
public Step step(Context context) {
if (Expressions.isNumber(expression) && expression.intValue() % 10 != 0) {
if (expression.intValue() == jumpPoint) {
Expression literal = parse("Jump5");
ContextSplitting splitting = new ContextSplitting(literal, context);
switch(splitting.getResult()) {
case LITERAL_IS_TRUE:
return new Solution(DefaultSymbol.createSymbol(jumpPoint + 5));
case LITERAL_IS_FALSE:
return new Solution(DefaultSymbol.createSymbol(jumpPoint + 1));
case LITERAL_IS_UNDEFINED:
return new ItDependsOn(literal, splitting, this, this);
default:
throw new Error("Unpredicted case");
}
} else {
return new Solution(expression);
}
} else
return new Solution(expression);
}
}
;
List<Rewriter> rewriters = Util.<Rewriter>list((Expression e) -> new JumperAtStepSolver(e, 5), (Expression e) -> new JumperAtStepSolver(e, 8));
Expression initial;
Expression expected;
initial = parse("1");
// no jumps at 1
expected = parse("1");
runTest(rewriters, initial, expected, map(parse("Jump5"), parse("Boolean")));
initial = parse("5");
expected = parse("if Jump5 then 10 else 6");
runTest(rewriters, initial, expected, map(parse("Jump5"), parse("Boolean")));
initial = parse("8");
expected = parse("if Jump5 then 13 else 9");
runTest(rewriters, initial, expected, map(parse("Jump5"), parse("Boolean")));
}
Aggregations