Skip to content

Commit

Permalink
addresses #128
Browse files Browse the repository at this point in the history
  • Loading branch information
hartig committed Jan 17, 2025
1 parent 4d1cc8c commit d6d980b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions spec/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -955,8 +955,9 @@ <h3>Graph Comparison</h3>
<a>RDF graphs</a> <var>G</var> and <var>G'</var> are
<dfn data-lt="graph isomorphism|isomorphic" data-lt-noDefault class="export">isomorphic</dfn>
(that is, they have an identical form)
if there is a bijection <var>M</var> between the sets of <a>nodes</a> of the two
graphs, such that all of the following properties hold:</p>
if there is a bijection <var>M</var>
from the set of all <a>RDF terms</a> into that same set,
such that all of the following properties hold:</p>

<ul>
<li><var>M</var> maps blank nodes to blank nodes.</li>
Expand All @@ -966,8 +967,10 @@ <h3>Graph Comparison</h3>
<li><var>M</var>(<var>iri</var>)=<var>iri</var> for every <a>IRI</a> <var>iri</var>
that is a node of <var>G</var>.</li>

<li><var>M</var>(<var>tt</var>) is the triple term ( <var>M</var>(<var>s</var>), <var>M</var>(<var>p</var>), <var>M</var>(<var>o</var>) ) if <var>tt</var> is a triple term of the form ( <var>s</var>, <var>p</var>, <var>o</var> ).</li>

<li>The triple ( <var>s</var>, <var>p</var>, <var>o</var> ) is in <var>G</var> if and
only if the triple ( <var>M</var>(<var>s</var>), <var>p</var>, <var>M</var>(<var>o</var>) ) is in
only if the triple ( <var>M</var>(<var>s</var>), <var>M</var>(<var>p</var>), <var>M</var>(<var>o</var>) ) is in
<var>G'</var>.</li>
</ul>

Expand Down

0 comments on commit d6d980b

Please sign in to comment.