Free cookie consent management tool by TermsFeed Policy Generator

Changeset 10047


Ignore:
Timestamp:
10/17/13 14:01:10 (11 years ago)
Author:
ascheibe
Message:

#2069 don't use architecture operators as the Robocode problem does not support ADFs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/RobocodeProblem.cs

    r10043 r10047  
    105105
    106106    private void InitializeOperators() {
    107       Operators.AddRange(ApplicationManager.Manager.GetInstances<ISymbolicExpressionTreeOperator>());
     107      Operators.AddRange(ApplicationManager.Manager.GetInstances<ISymbolicExpressionTreeOperator>()
     108        .Where(x => !(x is ISymbolicExpressionTreeArchitectureAlteringOperator)));
    108109      Operators.Add(new MinAverageMaxSymbolicExpressionTreeLengthAnalyzer());
    109110      Operators.Add(new SymbolicExpressionSymbolFrequencyAnalyzer());
Note: See TracChangeset for help on using the changeset viewer.