13 lines
146 B
Go
13 lines
146 B
Go
package decisionTree
|
|
|
|
type Vertex struct {
|
|
ID string
|
|
Value string
|
|
}
|
|
|
|
type Edge struct {
|
|
SourceID string
|
|
TargetID string
|
|
Value string
|
|
}
|