Ejemplo n.º 1
0
        public void GraphMatchBruteForce4()
        {
            Dictionary <INode, INode> baseMapping = new Dictionary <INode, INode>();
            INode a1 = this._factory.CreateBlankNode("a1");
            INode a2 = this._factory.CreateBlankNode("a2");
            INode b1 = this._factory.CreateBlankNode("b1");
            INode b2 = this._factory.CreateBlankNode("b2");

            //For this test we have a two blank nodes where the first has a single mapping and the second two possible mappings
            //Our base mapping also already calls out the confirmed mapping
            Dictionary <INode, List <INode> > possibles = new Dictionary <INode, List <INode> >();

            possibles.Add(a1, new List <INode> {
                b1
            });
            possibles.Add(a2, new List <INode> {
                b1, b2
            });
            baseMapping.Add(a1, b1);

            List <Dictionary <INode, INode> > generated = GraphMatcher.GenerateMappings(baseMapping, possibles).ToList();

            this.PrintMappings(generated);
            Assert.AreEqual(2, generated.Count);
            Assert.IsTrue(generated.All(m => m.ContainsKey(a1)));
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Determines whether this Graph is equal to the given Graph.
        /// </summary>
        /// <param name="g">Graph to test for equality.</param>
        /// <param name="mapping">Mapping of Blank Nodes iff the Graphs are equal and contain some Blank Nodes.</param>
        /// <returns></returns>
        /// <remarks>
        /// See <see cref="GraphMatcher"/> for documentation of the equality algorithm used.
        /// </remarks>
        public virtual bool Equals(IGraph g, out Dictionary <INode, INode> mapping)
        {
            // Set the mapping to be null
            mapping = null;

            GraphMatcher matcher = new GraphMatcher();

            if (matcher.Equals(this, g))
            {
                mapping = matcher.Mapping;
                return(true);
            }
            else
            {
                return(false);
            }
        }
Ejemplo n.º 3
0
        public void GraphMatchBruteForce1()
        {
            Dictionary <INode, INode> empty = new Dictionary <INode, INode>();
            INode a  = this._factory.CreateBlankNode("a");
            INode b1 = this._factory.CreateBlankNode("b1");
            INode b2 = this._factory.CreateBlankNode("b2");

            //For this test we have a single blank node with two possible mappings
            Dictionary <INode, List <INode> > possibles = new Dictionary <INode, List <INode> >();

            possibles.Add(a, new List <INode> {
                b1, b2
            });

            List <Dictionary <INode, INode> > generated = GraphMatcher.GenerateMappings(empty, possibles).ToList();

            this.PrintMappings(generated);
            Assert.AreEqual(2, generated.Count);
            Assert.IsTrue(generated.All(m => m.ContainsKey(a)));
            Assert.IsFalse(generated.All(m => m[a].Equals(b1)));
        }
        public void GraphMatchBruteForce3()
        {
            Dictionary <INode, INode> empty = new Dictionary <INode, INode>();
            INode a1 = this._factory.CreateBlankNode("a1");
            INode a2 = this._factory.CreateBlankNode("a2");
            INode b1 = this._factory.CreateBlankNode("b1");
            INode b2 = this._factory.CreateBlankNode("b2");

            //For this test we have a two blank nodes where the first has a single mapping and the second two possible mappings
            Dictionary <INode, List <INode> > possibles = new Dictionary <INode, List <INode> >();

            possibles.Add(a1, new List <INode> {
                b1
            });
            possibles.Add(a2, new List <INode> {
                b1, b2
            });

            List <Dictionary <INode, INode> > generated = GraphMatcher.GenerateMappings(empty, possibles).ToList();

            this.PrintMappings(generated);
            Assert.Equal(2, generated.Count);
            Assert.True(generated.All(m => m.ContainsKey(a1)));
        }
Ejemplo n.º 5
0
        public void GraphMatchNull3()
        {
            GraphMatcher matcher = new GraphMatcher();

            Assert.IsFalse(matcher.Equals(null, new Graph()));
        }
Ejemplo n.º 6
0
        public void GraphMatchNull2()
        {
            GraphMatcher matcher = new GraphMatcher();

            Assert.IsFalse(matcher.Equals(new Graph(), null));
        }
Ejemplo n.º 7
0
        public void GraphMatchNull1()
        {
            GraphMatcher matcher = new GraphMatcher();

            Assert.IsTrue(matcher.Equals(null, null));
        }
Ejemplo n.º 8
0
        /// <summary>
        /// Determines whether this Graph is equal to the given Graph
        /// </summary>
        /// <param name="g">Graph to test for equality</param>
        /// <param name="mapping">Mapping of Blank Nodes iff the Graphs are equal and contain some Blank Nodes</param>
        /// <returns></returns>
        /// <remarks>
        /// <para>
        /// The algorithm used to determine Graph equality is based in part on a Iterative Vertex Classification Algorithm described in a Technical Report from HP by Jeremy J Carroll - <a href="http://www.hpl.hp.com/techreports/2001/HPL-2001-293.html">Matching RDF Graphs</a>
        /// </para>
        /// <para>
        /// Graph Equality is determined according to the following algorithm:
        /// </para>
        /// <ol>
        /// <li>If the given Graph is null Graphs are not equal</li>
        /// <li>If the given Graph is this Graph (as determined by Reference Equality) then Graphs are equal</li>
        /// <li>If the Graphs have a different number of Triples they are not equal</li>
        /// <li>Declare a list of Triples which are the Triples of the given Graph called <em>OtherTriples</em></li>
        /// <li>Declare two dictionaries of Nodes to Integers which are called <em>LocalClassification</em> and <em>OtherClassification</em></li>
        /// <li>For Each Triple in this Graph
        ///     <ol>
        ///     <li>If it is a Ground Triple and cannot be found and removed from <em>OtherTriples</em> then Graphs are not equal since the Triple does not exist in both Graphs</li>
        ///     <li>If it contains Blank Nodes track the number of usages of this Blank Node in <em>LocalClassification</em></li>
        ///     </ol>
        /// </li> 
        /// <li>If there are any Triples remaining in <em>OtherTriples</em> which are Ground Triples then Graphs are not equal since this Graph does not contain them</li>
        /// <li>If all the Triples from both Graphs were Ground Triples and there were no Blank Nodes then the Graphs are equal</li>
        /// <li>Iterate over the remaining Triples in <em>OtherTriples</em> and populate the <em>OtherClassification</em></li>
        /// <li>If the count of the two classifications is different the Graphs are not equal since there are differing numbers of Blank Nodes in the Graph</li>
        /// <li>Now build two additional dictionaries of Integers to Integers which are called <em>LocalDegreeClassification</em> and <em>OtherDegreeClassification</em>.  Iterate over <em>LocalClassification</em> and <em>OtherClassification</em> such that the corresponding degree classifications contain a mapping of the number of Blank Nodes with a given degree</li>
        /// <li>If the count of the two degree classifications is different the Graphs are not equal since there are not the same range of Blank Node degrees in both Graphs</li>
        /// <li>For All classifications in <em>LocalDegreeClassification</em> there must be a matching classification in <em>OtherDegreeClassification</em> else the Graphs are not equal</li>
        /// <li>Then build a possible mapping using the following rules:
        ///     <ol>
        ///     <li>Any Blank Node used only once should be mapped to an equivalent Blank Node in the other Graph.  If this is not possible then the Graphs are not equal</li>
        ///     <li>Any Blank Node with a unique degree should be mapped to an equivalent Blank Node in the other Graph.  If this is not possible then the Graphs are not equal</li>
        ///     <li>Keep a copy of the mapping up to this point as a Base Mapping for use as a fallback in later steps</li>
        ///     <li>Build up lists of dependent pairs of Blank Nodes for both Graphs</li>
        ///     <li>Use these lists to determine if there are any independent nodes not yet mapped.  These should be mapped to equivalent Blank Nodes in the other Graph, if this is not possible the Graphs are not equal</li>
        ///     <li>Use the Dependencies and existing mappings to generate a possible mapping</li>
        ///     <li>If a Complete Possible Mapping (there is a Mapping for each Blank Node from this Graph to the Other Graph) then test this mapping.  If it succeeds then the Graphs are equal</li>
        ///     <li>Otherwise we now fallback to the Base Mapping and use it as a basis for Brute Forcing the possible solution space and testing every possibility until either a mapping works or we find the Graphs to be non-equal</li>
        ///     </ol>
        /// </li>
        /// </ol>
        /// </remarks>
        public virtual bool Equals(IGraph g, out Dictionary<INode, INode> mapping)
        {
            //Set the mapping to be null
            mapping = null;

            GraphMatcher matcher = new GraphMatcher();
            if (matcher.Equals(this, g))
            {
                mapping = matcher.Mapping;
                return true;
            }
            else
            {
                return false;
            }
        }