Changeset 15334 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Interpreter/PushInterpreter.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/Interpreter/PushInterpreter.cs
r15273 r15334 31 31 32 32 // setting the capacity of the Stacks to max points ensures that there will be enough memory at runtime 33 ExecStack = new PushStack<Expression>(Configuration.MaxP ointsInProgram);33 ExecStack = new PushStack<Expression>(Configuration.MaxProgramLength); 34 34 CodeStack = new PushStack<Expression>(); 35 35 NameStack = new PushStack<string>();
Note: See TracChangeset
for help on using the changeset viewer.