// Load a copy of the wine ontology. We'll load the ontology from the web.
OWLOntology ont = manager.loadOntologyFromOntologyDocument( IRI.create( PHYSICAL_URI ) );
ReasonerConfiguration reasonerConfig = new ReasonerConfigurationImp();
reasonerConfig.loadRemoteReasonerConfiguration(new File("reasoner.xml"));
OWLReasonerFactory reasonerFactory = new HeraklesReasonerFactory( reasonerConfig, "de.fzi.herakles.strategy.impl.AnalysingLoadStrategy", "de.fzi.herakles.strategy.impl.ABoxTBoxRatioSelectionStrategy" );
// We now need to load an ontology into the reasoner.
OWLReasoner reasoner = reasonerFactory.createReasoner( ont );