Changeset 15334 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Problem/BenchmarkSuite/PlushPushBenchmarkSuiteProblem.cs
- Timestamp:
- 08/21/17 11:33:53 (7 years ago)
- Location:
- branches/PushGP/HeuristicLab.PushGP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP
- Property svn:ignore
-
old new 1 1 *.user 2 packages 3 TestResults
-
- Property svn:ignore
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Problem/BenchmarkSuite/PlushPushBenchmarkSuiteProblem.cs
r15289 r15334 48 48 Description = data.Description; 49 49 BestKnownQuality = data.BestResult; 50 Config.MaxP ointsInProgram= data.MaxSize;50 Config.MaxProgramLength = data.MaxSize; 51 51 Config.EvalPushLimit = data.EvalLimit; 52 52 Config.ErcOptions = data.ErcOptions; … … 56 56 Config.InitInExpressions(data.TotalInputArgumentCount); 57 57 58 Encoding.MaxLength = data.MaxSize; 58 Encoding.MinLength = 0; 59 Encoding.MaxLength = data.MaxSize / 2; 59 60 } 60 61
Note: See TracChangeset
for help on using the changeset viewer.