{
GameInformation info = MetaGdl.examineGame("game-defs/tictactoe.kif", parser_);
List<Implication> rules = info.getRules();
AbstractReasoner r = new BasicReasoner(kb_, rules, parser_);
GdlList facts = parser_.parse("(true (cell 1 1 x))(true (cell 1 2 o))(true (cell 1 3 x))(true (cell 2 1 o))(true (cell 2 2 x))(true (cell 2 3 b))(true (cell 3 1 b))(true (cell 3 2 b))(true (cell 3 3 b))(true (control oplayer))");
addFacts(facts);
// Get all next facts
GroundFact does = GroundFact.fromExpression( parser_.parse("does xplayer noop") );
GroundFact does2 = GroundFact.fromExpression( parser_.parse("does oplayer (mark 2 3)") );