Exemplo n.º 1
0
 public AnnealingBlockFitter(IBlockFittingHeuristic heuristic)
 {
     r = new Random();
     this.heuristic = heuristic;
 }
Exemplo n.º 2
0
 public HillClimbingBlockFitter(IBlockFittingHeuristic heuristic)
 {
     r = new Random();
     this.heuristic = heuristic;
 }
Exemplo n.º 3
0
 public GeneticBlockFitter(IBlockFittingHeuristic heuristic, int populationSize)
 {
     this.heuristic      = heuristic;
     this.populationSize = populationSize;
     r = new Random();
 }