Changeset 14875 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/VectorConcatExpressions.cs
- Timestamp:
- 04/18/17 01:15:25 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/VectorConcatExpressions.cs
r14834 r14875 12 12 protected bool Eval(IInternalPushInterpreter interpter, IPushStack<List<T>> stack) { 13 13 if (stack.Count < 2 || 14 stack.Top.Count + stack .ReverseElementAt(1).Count > interpter.Configuration.MaxVectorLength)14 stack.Top.Count + stack[1].Count > interpter.Configuration.MaxVectorLength) 15 15 return false; 16 16
Note: See TracChangeset
for help on using the changeset viewer.