* @param model a Model containing instance data assertions, any statements added to the InfModel
* will be added to this underlying data model.
*/
public static InfModel createInfModel(Reasoner reasoner, Model schema, Model model) {
InfGraph graph = reasoner.bindSchema(schema.getGraph()).bind(model.getGraph());
return new InfModelImpl( graph );
}