예제 #1
0
파일: Colony.cs 프로젝트: CDMMKY/fuzzy_core
      public void refillDesicionArchive(int CountEliteDecision, Random rand, Base_ACO algorithm)
      {
          Decision        bestDecision  = theArchive.getBestDecision();
          List <Decision> EliteDecision = theArchive.getEliteDicision(CountEliteDecision, rand);

          theArchive.refillArchive(bestDecision, EliteDecision, algorithm, theTerm, rand);
      }