On 23 September 2011 20:22, Erik Antelman <[email protected]> wrote: > Okay, so I have a GenericRuleReasoner instance with a hybrid configuration. > I do some SPARQLCONSTRUCT on that InfModel and then add the results back > into the InfModel. > Everything looks like it works fine. > > Then I wanted to iterate over the model and compute something new assertions > myself. Being a newbie I used
That's likely the issue. Are you adding new statements while iterating? That's likely modifying the structures you're iterating over, which is a lileky cause for CME. HTH, I. > StmtIterator sceneIter = sourceModel.listStatements(select); > > -- > for(;;); /* [email protected] */ >
