Changeset 11740
- Timestamp:
- 01/08/15 16:25:00 (10 years ago)
- Location:
- branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/HeuristicLab.Problems.Programmable-3.3.csproj
r11739 r11740 148 148 <Compile Include="Interfaces\IEncodingOperator.cs" /> 149 149 <Compile Include="New\ProgrammableProblem.cs" /> 150 <Compile Include="New\MultiObjectiveProgrammableProblem.cs" /> 151 <Compile Include="New\MultiObjectiveScriptableProblem.cs" /> 150 152 <Compile Include="Operators\MultiEncodingManipulator.cs" /> 151 153 <Compile Include="Operators\MultiEncodingCrossover.cs" /> -
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Interfaces/internal/IMultiObjectiveEvaluationOperator.cs
r11739 r11740 25 25 26 26 namespace HeuristicLab.Problems.Programmable { 27 internal interface IMul itObjectiveEvaluationOperator : IMultiObjectiveEvaluator, IEncodingOperator {27 internal interface IMultiObjectiveEvaluationOperator : IMultiObjectiveEvaluator, IEncodingOperator { 28 28 Func<Individual, IRandom, double[]> EvaluateFunc { get; set; } 29 29 } -
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Operators/MultiObjectiveEvaluator.cs
r11739 r11740 32 32 [Item("Multi-objective Evaluator", "Calls the Evaluate method of the problem definition and writes the return value into the scope.")] 33 33 [StorableClass] 34 public class MultiObjectiveEvaluator : SingleSuccessorOperator, IMul itObjectiveEvaluationOperator, IStochasticOperator {34 public class MultiObjectiveEvaluator : SingleSuccessorOperator, IMultiObjectiveEvaluationOperator, IStochasticOperator { 35 35 36 36 public ILookupParameter<IRandom> RandomParameter {
Note: See TracChangeset
for help on using the changeset viewer.