"[r2: (?x p ?y) regex(?y, '((Boys)|(Girls))(.*)', ?m1, ?m2, ?m3, ?m4) -> (?x q ?m2) (?x r ?m3) (?x s ?m4) ] \n" +
"";
Graph data = Factory.createGraphMem();
data.add(new Triple(n1, p, NodeFactory.createLiteral("Girls44")) );
InfGraph infgraph = createInfGraph(rules, data);
infgraph.prepare();
TestUtil.assertIteratorValues(this, infgraph.getDeductionsGraph().find(null, null, null),
new Triple[] {
new Triple(n1, q, NodeFactory.createLiteral("")),
new Triple(n1, r, NodeFactory.createLiteral("Girls")),
new Triple(n1, s, NodeFactory.createLiteral("44")),