More warming up.

This commit is contained in:
Naveen Sundar Govindarajulu 2017-01-22 11:31:57 -08:00
parent 5cc43e4b00
commit 17cf8b245d

View file

@ -32,7 +32,7 @@ public class RunDemo {
List<Problem> problems = ProblemReader.readFrom(Sandbox.class.getResourceAsStream("firstorder-completness-tests.clj"));
problems.forEach(problem -> {
for (int i = 0; i < 10; i++) {
for (int i = 0; i < 100; i++) {
prover.prove(problem.getAssumptions(), problem.getGoal());
}