Skip to content

Commit

Permalink
set namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
xieguigang committed Feb 16, 2025
1 parent ac010e2 commit 29b1e79
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Data_science/Graph/Model/Tree/TermTree.vb
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@

Imports System.Runtime.CompilerServices
Imports System.Runtime.Serialization
Imports Microsoft.VisualBasic.ComponentModel.Collection

''' <summary>
''' A tree with string term as key
Expand Down Expand Up @@ -87,7 +88,7 @@ Public Class TermTree(Of T) : Inherits Tree(Of T, String)
Return New TermTree(Of T) With {
.Data = value,
.ID = Me.ID + Childs.Count,
.Label = name,
.label = name,
.Parent = Me,
.Childs = New Dictionary(Of String, Tree(Of T, String))
}
Expand Down

0 comments on commit 29b1e79

Please sign in to comment.