|  | ClusterSetEquality Operator | 
            Tests for equality of two cluster sets. Two clusters sets are equal
            if they have the same number of objects and all objects are assigned to
            the same clusters.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static bool operator ==(
	ClusterSet x,
	ClusterSet y
)
Public Shared Operator = ( 
	x As ClusterSet,
	y As ClusterSet
) As Boolean
public:
static bool operator ==(
	ClusterSet^ x, 
	ClusterSet^ y
)
static let inline (=)
        x : ClusterSet * 
        y : ClusterSet  : boolParameters
- x  ClusterSet
- The left-hand cluster set.
- y  ClusterSet
- The right-hand cluster set.
Return Value
BooleanTrue if the cluster sets have the same number of objects and all
            objects are assigned to the same clusters, or if both cluster sets are
            
null; otherwise, 
false.
             
 See Also
See Also