|
Henry
HENRY (N3 parser and reasoner for SWI-Prolog)Install
http://e-culture.multimedian.nl/software/ClioPatria.shtml And put the SeRQL directory in the Henry directory. Use
$ cwm $1 --think --rdf --data
?- [henry]. You can then load some n3 files using:
?- n3_load('file.n3'). Or some RDF (XML or turtle) files using: ?- rdf_load('file.rdf'). Then, you can compile the N3 rules you have in store using: ?- compile_all. Then, the derived statements are accessible through: ?- n3_entailment:rdf(Subject,Predicate,Object).
Or through the SPARQL end-point at http://localhost:3020/sparql (make sure you specify N3 as the entailment module) |
Sign in to add a comment