コード例 #1
0
        public static int GetDistanceEstimate(
            DecompositionTree <DecompositionTreeItem, LeafDistTable> decompTree,
            Node x, Node y)
        {
            Leaf <DecompositionTreeItem, LeafDistTable> xLeaf
                = decompTree.subsets[x.id];
            Leaf <DecompositionTreeItem, LeafDistTable> yLeaf
                = decompTree.subsets[y.id];
            BTNode <DecompositionTreeItem, LeafDistTable> LCA
                = decompTree.Get_LCA(xLeaf, yLeaf);
            Dictionary <BTNode <DecompositionTreeItem, LeafDistTable>,
                        Dictionary <int, List <int[]> > > xTable
                = decompTree.nodesToSeparatorPaths.table[x.id];
            Dictionary <BTNode <DecompositionTreeItem, LeafDistTable>,
                        Dictionary <int, List <int[]> > > yTable
                = decompTree.nodesToSeparatorPaths.table[y.id];
            int est0 = decompTree.Merge(
                xTable[LCA][0],
                yTable[LCA][0]);
            int est1 = decompTree.Merge(
                xTable[LCA][1],
                yTable[LCA][1]);

            return(Math.Min(est0, est1));
        }
コード例 #2
0
 public DecompositionTree
     (DecompositionTree <DecompositionTreeItem, LeafDistTable> sepTree,
     List <Leaf <DecompositionTreeItem, LeafDistTable> > leaves,
     Dictionary <long, Node> graphNodes)
 {
     root = sepTree.root;
     foreach (Leaf <DecompositionTreeItem, LeafDistTable> leaf in leaves)
     {
         leaf.table = new LeafDistTable(graphNodes, leaf.value.nodesSubset);
         foreach (long id in leaf.value.nodesSubset)
         {
             subsets.Add(id, leaf);
         }
     }
     SetDepthAndDecompTreePath(root, 0, new List <bool>());
     nodesToSeparatorPaths = new NodesToSeparatorPathsTable(graphNodes);
     Get_xToSeparatorPaths(root, graphNodes);
 }