- Timestamp:
- 04/08/15 13:05:53 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Problems.GrammaticalOptimization-gkr/Main/Program.cs
r12294 r12295 54 54 // new HeuristicLab.Algorithms.Bandits.GrammarPolicies.GenericGrammarPolicy(problem, new UCB1TunedPolicy())); 55 55 var policy = new GenericPolicy(problem); 56 var alg = new SequentialSearch(problem, 23, random, 1,56 var alg = new SequentialSearch(problem, 23, random, 0, 57 57 policy); 58 58 //var alg = new MonteCarloTreeSearch(problem, 23, random, new UCB1Policy(), new RandomSimulation(problem, random, 30)); … … 71 71 if (iterations % 1000 == 0) Console.Clear(); 72 72 Console.SetCursorPosition(0, 0); 73 //alg.PrintStats();74 policy.PrintStats();73 alg.PrintStats(); 74 //policy.PrintStats(); 75 75 } 76 76
Note: See TracChangeset
for help on using the changeset viewer.