Changeset 15341 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Problem
- Timestamp:
- 08/28/17 09:03:34 (8 years ago)
- Location:
- branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Problem
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Problem/IntegerVectorPushProblem.cs
r15334 r15341 59 59 Encoding.Bounds[0, 0] = 0; 60 60 Encoding.Bounds[0, 1] = Config.EnabledExpressions.Count; 61 Encoding.Length = Config.MaxProgramLength;62 61 } 63 62 -
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Problem/PlushPushProblem.cs
r15334 r15341 1 1 namespace HeuristicLab.Problems.ProgramSynthesis.Push.Problem { 2 using System.Diagnostics; 2 3 using System.Linq; 3 4 … … 29 30 Encoding.ErcOptionsParameter = Config.ErcOptionsParameter; 30 31 Encoding.InstructionsParameter = Config.InstructionsParameter; 31 Encoding.MinLengthParameter = Config.MinProgramLengthParameter;32 Encoding.MaxLengthParameter = Config.MaxProgramLengthParameter;33 32 Encoding.MaxCloseParameter = Config.MaxCloseParameter; 34 33 Encoding.CloseBiasLevelParameter = Config.CloseBiasLevelParameter; … … 49 48 var program = plushVector.PushProgram; 50 49 50 if (program == null) 51 Debugger.Break(); 52 51 53 return program; 52 54 }
Note: See TracChangeset
for help on using the changeset viewer.