Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/23/15 20:00:14 (9 years ago)
Author:
aballeit
Message:

#2283 added GUI and charts; fixed MCTS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.GrammaticalOptimization/Main/Program.cs

    r12098 r12503  
    3434        private static void RunDemo()
    3535        {
    36 
    37 
    3836            int maxIterations = 100000;
    3937            int iterations = 0;
     
    4644            var problem = new RoyalPairProblem();
    4745            //var problem = new EvenParityProblem();
    48             //var alg = new SequentialSearch(problem, 23, random, 0,
    49             // new HeuristicLab.Algorithms.Bandits.GrammarPolicies.GenericGrammarPolicy(problem, new UCB1TunedPolicy()));
    50             var alg = new MonteCarloTreeSearch(problem, 23, random, new UCB1Policy(), new RandomSimulation(problem, random, 23));
     46            var alg = new SequentialSearch(problem, 23, random, 0,
     47            new HeuristicLab.Algorithms.Bandits.GrammarPolicies.GenericGrammarPolicy(problem, new UCB1TunedPolicy()));
     48            //var alg = new MonteCarloTreeSearch(problem, 23, random, new UCB1Policy(), new RandomSimulation(problem, random, 23));
    5149
    5250
Note: See TracChangeset for help on using the changeset viewer.