示例#1
0
        /// <summary>
        ///   Constructor privat folosit pentru operații de clonare.
        /// </summary>
        private DecisionShape(Term shape, double activationLevel, int activationCount)
        {
            this.shape = shape.clone();

            this._activationLevel = activationLevel;
            this._activationCount = activationCount;

            this.centerOfGravity  = this.centerOfMass();
        }
示例#2
0
 /// <param name="shape">Forma cererii - termen fuzzy</param>
 /// <param name="importance">Importanţa acestei forme</param>
 public RequestShape(Term shape, int importance)
 {
     this.shape = shape.clone();
     this.importance = importance;
 }