Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/21/17 11:33:53 (7 years ago)
Author:
pkimmesw
Message:

#2665 Testet Problems, Testet error functions, Small fixes, Created HL files

Location:
branches/PushGP/HeuristicLab.PushGP
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP

    • Property svn:ignore
      •  

        old new  
        11*.user
         2packages
         3TestResults
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Problem/IntegerVectorPushProblem.cs

    r15289 r15334  
    5959      Encoding.Bounds[0, 0] = 0;
    6060      Encoding.Bounds[0, 1] = Config.EnabledExpressions.Count;
    61       Encoding.Length = Config.MaxPointsInProgram;
     61      Encoding.Length = Config.MaxProgramLength;
    6262    }
    6363
     
    7272
    7373      solutionCreator.ErcOptions = Config.ErcOptions;
     74      solutionCreator.MinLength = Config.MinProgramLength;
    7475
    7576      if (!Operators.OfType<PushExpressionFrequencyAnalyzer>().Any()) {
    7677        Operators.Add(new PushExpressionFrequencyAnalyzer());
     78      }
     79
     80      if (!Operators.OfType<IndividualZeroErrorAnalyzer>().Any()) {
     81        Operators.Add(new IndividualZeroErrorAnalyzer());
    7782      }
    7883
Note: See TracChangeset for help on using the changeset viewer.