You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from the set of all <a>RDF terms</a> into that same set,
910
-
such that all of the following properties hold:</p>
911
-
912
-
<ul>
913
-
<li><var>M</var> maps blank nodes to blank nodes.</li>
914
-
<li><var>M</var>(<var>lit</var>)=<var>lit</var> for every <a>RDF literal</a><var>lit</var>.</li>
915
-
916
-
<li><var>M</var>(<var>iri</var>)=<var>iri</var> for every <a>IRI</a><var>iri</var>.</li>
904
+
<p>This section introduces a notion of graph isomorphism for [=RDF graphs=]
905
+
which is based on a mapping between [=RDF terms=]
906
+
that maps blank nodes to blank nodes
907
+
and is the identity function for IRIs and literals.</p>
917
908
918
-
<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>
909
+
<p>A function |M| from the set of all [=RDF terms=] into that same set
910
+
is called an <dfn>isomorphic RDF-term mapping</dfn>
911
+
if it is has all of the following properties:</p>
919
912
920
-
<li>The triple ( <var>s</var>, <var>p</var>, <var>o</var> ) is in <var>G</var> if and
921
-
only if the triple ( <var>M</var>(<var>s</var>), <var>M</var>(<var>p</var>), <var>M</var>(<var>o</var>) ) is in
922
-
<var>G'</var>.</li>
913
+
<ul>
914
+
<li>|M| is bijective.</li>
915
+
<li>For every [=blank node=] |b|, |M|(|b|) is a [=blank node=] (but not necessarily the same as |b|).</li>
916
+
<li>For every [=literal=] |lit|, |M|(|lit|) = |lit|.</li>
917
+
<li>For every [=IRI=] |iri|, |M|(|iri|) = |iri|.</li>
918
+
<li>For every [=triple term=] |tt| of the form (|s|, |p|, |o|), |M|(|tt|) is the triple term ( |M|(|s|), |M|(|p|), |M|(|o|) ).</li>
923
919
</ul>
924
920
921
+
<pid="section-graph-equality">Two [=RDF graphs=] |G| and <var>G'</var> are
0 commit comments