Free cookie consent management tool by TermsFeed Policy Generator

Changeset 12050


Ignore:
Timestamp:
02/22/15 22:08:20 (9 years ago)
Author:
aballeit
Message:

#2283: first MCTS algorithmus concept

Location:
branches/HeuristicLab.Problems.GrammaticalOptimization
Files:
23 added
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.GrammaticalOptimization/GrammaticalOptimization.sln

    r11981 r12050  
    11
    22Microsoft Visual Studio Solution File, Format Version 12.00
    3 # Visual Studio 2012
     3# Visual Studio 2013
     4VisualStudioVersion = 12.0.31101.0
     5MinimumVisualStudioVersion = 10.0.40219.1
    46Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Problems.GrammaticalOptimization", "HeuristicLab.Problems.GrammaticalOptimization\HeuristicLab.Problems.GrammaticalOptimization.csproj", "{CB9DCCF6-667E-4A13-B82D-DBD6B45A045E}"
    57EndProject
     
    5961  EndProjectSection
    6062EndProject
     63Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Algorithms.MonteCarloTreeSearch", "HeuristicLab.Algorithms.MonteCarloTreeSearch\HeuristicLab.Algorithms.MonteCarloTreeSearch.csproj", "{2C115235-8FA9-4F7F-B3A0-A0144F8A35CA}"
     64EndProject
    6165Global
    6266  GlobalSection(SolutionConfigurationPlatforms) = preSolution
     
    105109    {8B4C199E-C08B-479E-9B82-6AE5B113459E}.Release|Any CPU.ActiveCfg = Release|Any CPU
    106110    {8B4C199E-C08B-479E-9B82-6AE5B113459E}.Release|Any CPU.Build.0 = Release|Any CPU
     111    {2C115235-8FA9-4F7F-B3A0-A0144F8A35CA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
     112    {2C115235-8FA9-4F7F-B3A0-A0144F8A35CA}.Debug|Any CPU.Build.0 = Debug|Any CPU
     113    {2C115235-8FA9-4F7F-B3A0-A0144F8A35CA}.Release|Any CPU.ActiveCfg = Release|Any CPU
     114    {2C115235-8FA9-4F7F-B3A0-A0144F8A35CA}.Release|Any CPU.Build.0 = Release|Any CPU
    107115  EndGlobalSection
    108116  GlobalSection(SolutionProperties) = preSolution
  • branches/HeuristicLab.Problems.GrammaticalOptimization/Main/Program.cs

    r11981 r12050  
    3636      var random = new Random();
    3737
    38       var problem = new SymbolicRegressionPoly10Problem();
     38      //var problem = new SymbolicRegressionPoly10Problem();
    3939      //var problem = new SantaFeAntProblem();             
    40       //var problem = new RoyalPairProblem();
     40      var problem = new RoyalPairProblem();
    4141      //var problem = new EvenParityProblem();
    4242      var alg = new SequentialSearch(problem, 23, random, 0,
Note: See TracChangeset for help on using the changeset viewer.