Changeset 14909 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Problem
- Timestamp:
- 05/03/17 01:31:10 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Problem/BenchmarkSuite/PushBenchmarkSuiteEvaluator.cs
r14908 r14909 2 2 using System; 3 3 using System.Collections.Generic; 4 using System.Linq; 5 4 6 using Common; 5 7 using Core; … … 7 9 8 10 using HeuristicLab.BenchmarkSuite; 9 using HeuristicLab.BenchmarkSuite.Problems;10 11 using HeuristicLab.Parameters; 11 12 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; … … 131 132 interpreter.IntegerStack.Push(example.InputInteger); 132 133 interpreter.FloatStack.Push(example.InputFloat); 134 interpreter.CharStack.Push(example.InputChar); 135 interpreter.StringStack.Push(example.InputString); 136 interpreter.StringVectorStack.Push(example.InputStringVector.Select(v => new List<string>(v))); 137 interpreter.IntegerVectorStack.Push(example.InputIntegerVector.Select(v => new List<long>(v))); 138 interpreter.FloatVectorStack.Push(example.InputFloatVector.Select(v => new List<double>(v))); 133 139 134 140 interpreter.Run(program);
Note: See TracChangeset
for help on using the changeset viewer.