Free cookie consent management tool by TermsFeed Policy Generator

Changeset 13055 for trunk


Ignore:
Timestamp:
10/22/15 20:18:30 (8 years ago)
Author:
gkronber
Message:

#2472: changed ordering of symbols in the grammar for the artificial ant problem to make sure the new problem produces the same results as the old implementation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.GeneticProgramming/3.3/ArtificialAnt/Problem.cs

    r12947 r13055  
    113113      g.AddSymbols(new string[] { "IfFoodAhead", "Prog2" }, 2, 2);
    114114      g.AddSymbols(new string[] { "Prog3" }, 3, 3);
    115       g.AddTerminalSymbols(new string[] { "Left", "Right", "Move" });
     115      g.AddTerminalSymbols(new string[] { "Move", "Left", "Right" });
    116116      base.Encoding = new SymbolicExpressionTreeEncoding(g, 20, 10);
    117117    }
Note: See TracChangeset for help on using the changeset viewer.