Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/08/15 13:05:53 (9 years ago)
Author:
gkronber
Message:

#2283: force selection of untried alternatives

File:
1 edited

Legend:

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

    r12294 r12295  
    5454        //   new HeuristicLab.Algorithms.Bandits.GrammarPolicies.GenericGrammarPolicy(problem, new UCB1TunedPolicy()));
    5555        var policy = new GenericPolicy(problem);
    56         var alg = new SequentialSearch(problem, 23, random, 1,
     56        var alg = new SequentialSearch(problem, 23, random, 0,
    5757          policy);
    5858        //var alg = new MonteCarloTreeSearch(problem, 23, random, new UCB1Policy(), new RandomSimulation(problem, random, 30));
     
    7171            if (iterations % 1000 == 0) Console.Clear();
    7272            Console.SetCursorPosition(0, 0);
    73             // alg.PrintStats();
    74             policy.PrintStats();
     73            alg.PrintStats();
     74            //policy.PrintStats();
    7575          }
    7676
Note: See TracChangeset for help on using the changeset viewer.