Changeset 15771 for branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/Selector
- Timestamp:
- 02/13/18 16:56:35 (7 years ago)
- Location:
- branches/2895_PushGP_GenealogyAnalysis
- Files:
-
- 1 added
- 2 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/Selector/ICaseSingleObjectiveSelector.cs
r14834 r15771 1 namespace HeuristicLab.Problems.ProgramSynthesis .Push.Selector{1 namespace HeuristicLab.Problems.ProgramSynthesis { 2 2 using HeuristicLab.Core; 3 3 using HeuristicLab.Data; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/Selector/LexicaseSelector.cs
r15366 r15771 20 20 #endregion 21 21 22 namespace HeuristicLab.Problems.ProgramSynthesis.Push.Selector { 23 using System; 24 using System.Collections.Generic; 25 using System.Linq; 22 using System; 23 using System.Collections.Generic; 24 using System.Linq; 26 25 27 using HeuristicLab.Common; 28 using HeuristicLab.Core; 29 using HeuristicLab.Data; 30 using HeuristicLab.Parameters; 31 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 32 using HeuristicLab.Problems.ProgramSynthesis.Push.Problem; 33 using HeuristicLab.Random; 34 using HeuristicLab.Selection; 26 using HeuristicLab.Common; 27 using HeuristicLab.Core; 28 using HeuristicLab.Data; 29 using HeuristicLab.Parameters; 30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 31 using HeuristicLab.Random; 32 using HeuristicLab.Selection; 35 33 34 namespace HeuristicLab.Problems.ProgramSynthesis { 36 35 /// <summary> 37 36 /// A lexicase selection operator which considers all successful evaluated training cases for selection. … … 40 39 [StorableClass] 41 40 public sealed class LexicaseSelector : StochasticSingleObjectiveSelector, ICaseSingleObjectiveSelector { 42 public ILookupParameter<ItemArray<DoubleArray>> CaseQualitiesParameter 43 { 41 public ILookupParameter<ItemArray<DoubleArray>> CaseQualitiesParameter { 44 42 get { return (ILookupParameter<ItemArray<DoubleArray>>)Parameters[IntegerVectorPushProblem.CaseQualitiesScopeParameterName]; } 45 43 }
Note: See TracChangeset
for help on using the changeset viewer.