PSLAManager.Cluster.Cluster C# (CSharp) Method

Cluster() public method

public Cluster ( String cName, int cConfig, double cMin, double cMax, double intervalLow, double intervalMax ) : System
cName String
cConfig int
cMin double
cMax double
intervalLow double
intervalMax double
return System
        public Cluster(String cName, int cConfig, double cMin, double cMax, double intervalLow, double intervalMax)
        {
            this.clusterName = cName;
            this.clusterTier = cConfig;
            this.clusterMin = cMin;
            this.clusterMax = cMax;
            this.clusterIntervalLow = intervalLow;
            this.clusterIntervalHigh = intervalMax;
            clusterSingleton = false;
        }

Same methods

Cluster::Cluster ( ) : System