Changeset 9122
- Timestamp:
- 01/07/13 21:29:42 (12 years ago)
- Location:
- branches/CMAES
- Files:
-
- 3 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/CMAES/HeuristicLab.Encodings.RealVectorEncoding/3.3/CMAESOperators/CMAMutator.cs
r9121 r9122 31 31 32 32 namespace HeuristicLab.Encodings.RealVectorEncoding { 33 [Item("C ovarianceMatrixMutator", "Mutates the solution vector according to the CMA-ES scheme.")]33 [Item("CMAMutator", "Mutates the solution vector according to the CMA-ES scheme.")] 34 34 [StorableClass] 35 35 public sealed class CMAMutator : SingleSuccessorOperator, IStochasticOperator, IRealVectorOperator, ICMAESManipulator, IIterationBasedOperator { -
branches/CMAES/HeuristicLab.Encodings.RealVectorEncoding/3.3/CMAESOperators/CMAParameters.cs
r9121 r9122 29 29 30 30 namespace HeuristicLab.Encodings.RealVectorEncoding { 31 [Item("CMA ES StrategyParameters", "CMA-ES controls many strategy parameters that guide the search and which are combined in this class.")]31 [Item("CMAParameters", "CMA-ES controls many strategy parameters that guide the search and which are combined in this class.")] 32 32 [StorableClass] 33 33 public sealed class CMAParameters : Item, INotifyPropertyChanged { -
branches/CMAES/HeuristicLab.Encodings.RealVectorEncoding/3.3/HeuristicLab.Encodings.RealVectorEncoding-3.3.csproj
r9118 r9122 104 104 <Private>False</Private> 105 105 </Reference> 106 <Reference Include="HeuristicLab.Analysis-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 107 <SpecificVersion>False</SpecificVersion> 108 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Analysis-3.3.dll</HintPath> 109 <Private>False</Private> 110 </Reference> 106 111 <Reference Include="HeuristicLab.Collections-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 107 112 <SpecificVersion>False</SpecificVersion> … … 112 117 <SpecificVersion>False</SpecificVersion> 113 118 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath> 119 <Private>False</Private> 120 </Reference> 121 <Reference Include="HeuristicLab.Common.Resources-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 122 <SpecificVersion>False</SpecificVersion> 123 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common.Resources-3.3.dll</HintPath> 114 124 <Private>False</Private> 115 125 </Reference> … … 163 173 </ItemGroup> 164 174 <ItemGroup> 175 <Compile Include="CMAESOperators\CMAAnalyzer.cs" /> 165 176 <Compile Include="CMAESOperators\CMARecombinator.cs" /> 166 177 <Compile Include="CMAESOperators\CMAParameters.cs" /> -
branches/CMAES/HeuristicLab.Problems.TestFunctions/3.3/HeuristicLab.Problems.TestFunctions-3.3.csproj
r9121 r9122 152 152 </ItemGroup> 153 153 <ItemGroup> 154 <Compile Include="Evaluators\RandomEvaluator.cs" /> 154 155 <Compile Include="Improvers\SingleObjectiveTestFunctionImprovementOperator.cs" /> 156 <Compile Include="MoveEvaluators\RandomAdditiveMoveEvaluator.cs" /> 155 157 <Compile Include="PathRelinkers\SingleObjectiveTestFunctionPathRelinker.cs" /> 156 158 <Compile Include="Plugin.cs" /> -
branches/CMAES/HeuristicLab.Problems.TestFunctions/3.3/SingleObjectiveTestFunctionProblem.cs
r9121 r9122 416 416 op.OffspringParameter.ActualName = SolutionCreator.RealVectorParameter.ActualName; 417 417 } 418 foreach (var op in Operators.OfType<CMAAnalyzer>()) { 419 op.RealVectorParameter.ActualName = SolutionCreator.RealVectorParameter.ActualName; 420 } 418 421 } 419 422 private void UpdateStrategyVectorBounds() {
Note: See TracChangeset
for help on using the changeset viewer.