示例#1
0
      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);
      }