0

I have designed some rules and am wondering what the reasoner is is returned by the Jena's GenericRuleReasonerFactory (as shown in the following code)? Is it Racer, Pellet, or HermiT?

Reasoner reasoner = GenericRuleReasonerFactory.theInstance().create(configuration);
Stanislav Kralin
  • 11,070
  • 4
  • 35
  • 58
  • This is answered in the documentation, [Reasoners and rule engines: Jena inference support](http://jena.apache.org/documentation/inference/). As its name suggests, it uses the [generic rule reasoner](http://jena.apache.org/documentation/inference/#rules). – Joshua Taylor Mar 03 '14 at 21:45
  • This question appears to be off-topic because it answered plainly in the documentation (http://jena.apache.org/documentation/inference/#rules), and such questions usually aren't needed on Stack Overflow (see the meta post, http://meta.stackexchange.com/q/208372/225437). – Joshua Taylor Mar 03 '14 at 21:47

1 Answers1

0

It's Jena's own rules engine.

http://jena.apache.org/documentation/inference/index.html#rules

AndyS
  • 16,345
  • 17
  • 21