use of at.ac.tuwien.kr.alpha.core.solver.TestableChoiceManager in project Alpha by alpha-asp.
the class AlphaHeuristicTestAssumptions method setUp.
@BeforeEach
public void setUp() {
String testProgram = "" + "b1." + "b2." + "{b3}." + "{b4}." + "h :- b1, b2, not b3, not b4.";
CompiledProgram internalProgram = parseAndPreprocess.apply(testProgram);
atomStore = new AtomStoreImpl();
grounder = new NaiveGrounder(internalProgram, atomStore, true);
assignment = new TrailAssignment(atomStore);
choiceManager = new TestableChoiceManager(assignment, new NaiveNoGoodStore(assignment));
}
Aggregations