Skip to content

Commit

Permalink
Skip a test on subgraph inferrence and update documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Apr 19, 2019
1 parent fbdef33 commit d419b1a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Write a graph to a file:
end

### Reasoning
Partial N3 reasoning is supported. Instantiate a reasoner from a dataset:
Experimental N3 reasoning is supported. Instantiate a reasoner from a dataset:

RDF::N3::Reasoner.new do |reasoner|
RDF::N3::Reader.open("etc/foaf.n3") {|reader| reasoner << reader}
Expand Down Expand Up @@ -94,6 +94,8 @@ results in:
g = RDF::Node.new()
RDF::Statement(f, <#loves>, h)

Note that the behavior of both existential and universal variables is not entirely in keeping with the [Team Submission][], and neither work quite like SPARQL variables. When used in the antecedent part of an implication, universal variables should behave much like SPARQL variables. This area is subject to a fair amount of change.

## Implementation Notes
The parser is driven through a rules table contained in lib/rdf/n3/reader/meta.rb. This includes
branch rules to indicate productions to be taken based on a current production. Terminals are denoted
Expand Down Expand Up @@ -191,6 +193,7 @@ see <http://unlicense.org/> or the accompanying {file:UNLICENSE} file.
[RDF.rb]: http://ruby-rdf.github.com/rdf
[RDF::Turtle]: http://ruby-rdf.github.com/rdf-turtle/
[N3]: http://www.w3.org/DesignIssues/Notation3.html "Notation-3"
[Team Submission]: https://www.w3.org/TeamSubmission/n3/
[Turtle]: http://www.w3.org/TR/turtle/
[N-Triples]: http://www.w3.org/TR/n-triples/
[YARD]: http://yardoc.org/
Expand Down
2 changes: 1 addition & 1 deletion spec/suite_reasoner_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
pending "support for log:conclusion"
when *%w{conjunction}
pending "support for log:conjunction"
when *%w{t553}
when *%w{t553 t554}
pending "support for inference over quoted graphs"
when *%w{t2005}
pending "something else"
Expand Down

0 comments on commit d419b1a

Please sign in to comment.