Replies: 2 comments
|
Moreover, one of the entailment rules is for the transitivity of subclass. Our module supports the transitivity entailment upto any depth. We have implemented it using adjacency list representation of graph and and then applying DFS on this graph. |
0 replies
|
We have a reasoner here: https://github.com/RDFLib/OWL-RL |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I have implemented a simple reasoner which follows the entailment rules as given in https://www.w3.org/TR/rdf11-mt/#entailment-rules-informative. The reasoner iterates over all the n triples in the model object and then finds entailment rule patterns in them.
All reactions