Example #1
0
        public FNV fg;                      //車間距離

        /// <summary>
        /// 実態を持たせる
        /// </summary>
        public Recognition_Rate()
        {
            effectiveness = new bool();
            random_value  = new Random_Value();
            fv            = new FNV();
            fg            = new FNV();
        }
Example #2
0
 /// <summary>
 /// 値コピーを作成する
 /// </summary>
 /// <param name="recognition">Recognition_Rate</param>
 public Recognition_Rate(Recognition_Rate recognition)
 {
     effectiveness = recognition.effectiveness;
     random_value  = new Random_Value(recognition.random_value);
     fv            = new FNV(recognition.fv);
     fg            = new FNV(recognition.fg);
 }
Example #3
0
 /// <summary>
 /// 値のコピーを作成する
 /// </summary>
 /// <param name="random_value">Random_Value</param>
 public Random_Value(Random_Value random_value)
 {
     Pg = random_value.Pg;
     Pv = random_value.Pv;
 }