Skip to content

fix up definitions for non-ground graphs #128

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions spec/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -500,9 +500,13 @@ <h3>Blank nodes</h3>
to the universe IR of I.
Define the mapping [I+A] as:</p>
<ul>
<li> [I+A](x)=I(x) when x is a <a>name</a>, </li>
<li> [I+A](x)=A(x) when x is a blank node, </li>
<li> [I+A](x)= RE( [I+A](x.s), [I+A](x.p), [I+A](x.o) ) where x.s, x.p, and x.o are the first, second, and third components of x, respectively. </li>
<li> [I+A](x)=I(x) when x is a <a>name</a>; </li>
<li> [I+A](x)=A(x) when x is a blank node; </li>
<li> [I+A](x)= RE( [I+A](x.s), [I+A](x.p), [I+A](x.o) ) when x is a triple term, where x.s, x.p, and x.o are the first, second, and third components of x, respectively; </li>
<li> [I+A](x)=true when x is a triple and [I+A](p) is in IP and the pair <[I+A](s),[I+A](o)> is in IEXT([I+A](p));</li>
<li> [I+A](x)=false when x is a triple, otherwise;
<li> [I+A](x)=false if x is an RDF graph and [I+A](x')=false for some triple x' in x;</li>
<li> [I+A](x)=true if x an RDF graph, otherwise</li>
Comment on lines +508 to +509
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<li> [I+A](x)=false if x is an RDF graph and [I+A](x')=false for some triple x' in x;</li>
<li> [I+A](x)=true if x an RDF graph, otherwise</li>
<li> [I+A](x)=false if x is an RDF graph and [I+A](x')=false for some triple x' in x;</li>
<li> [I+A](x)=true if x an RDF graph, otherwise</li>

</ul>
<p>
Extend this mapping to triples and RDF graphs using the rules given above for ground graphs.
Expand Down