gorgonia.org/gorgonia@v0.9.17/internal/encoding/constants.go (about) 1 package encoding 2 3 // Cluster represent a group of nodes that are similars 4 // It is used for the grapviz generation 5 6 var ( 7 // UndefinedCluster ... 8 UndefinedCluster = NewGroup("UndefinedCluster") 9 // ExprGraphCluster is the default cluster 10 ExprGraphCluster = NewGroup("ExprGraphCluster ") 11 // ConstantCluster is the group of nodes that represents constants 12 ConstantCluster = NewGroup("Constants ") 13 // InputCluster is the group of nodes that are expecting values 14 InputCluster = NewGroup("Inputs ") 15 // GradientCluster ... 16 GradientCluster = NewGroup("Gradients ") 17 // StrayCluster ... 18 StrayCluster = NewGroup("Undifferentiated nodes ") 19 )