- Timestamp:
- 02/06/15 16:24:33 (10 years ago)
- Location:
- trunk/sources/HeuristicLab.Algorithms.ParameterlessPopulationPyramid/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/sources/HeuristicLab.Algorithms.ParameterlessPopulationPyramid/3.3/HeuristicLab.Algorithms.ParameterlessPopulationPyramid-3.3.csproj ¶
r11958 r11960 17 17 <DebugType>full</DebugType> 18 18 <Optimize>false</Optimize> 19 <OutputPath> ..\..\..\..\trunk\sources\bin\</OutputPath>19 <OutputPath>$(SolutionDir)\bin\</OutputPath> 20 20 <DefineConstants>DEBUG;TRACE</DefineConstants> 21 21 <ErrorReport>prompt</ErrorReport> … … 25 25 <DebugType>pdbonly</DebugType> 26 26 <Optimize>true</Optimize> 27 <OutputPath> ..\..\..\..\trunk\sources\bin\</OutputPath>27 <OutputPath>$(SolutionDir)\bin\</OutputPath> 28 28 <DefineConstants>TRACE</DefineConstants> 29 29 <ErrorReport>prompt</ErrorReport> … … 38 38 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 39 39 <DebugSymbols>true</DebugSymbols> 40 <OutputPath> ..\..\bin\</OutputPath>40 <OutputPath>$(SolutionDir)\bin\</OutputPath> 41 41 <DefineConstants>DEBUG;TRACE</DefineConstants> 42 42 <DebugType>full</DebugType> … … 46 46 </PropertyGroup> 47 47 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 48 <OutputPath> ..\..\bin\</OutputPath>48 <OutputPath>$(SolutionDir)\bin\</OutputPath> 49 49 <DefineConstants>TRACE</DefineConstants> 50 50 <Optimize>true</Optimize> … … 56 56 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'"> 57 57 <DebugSymbols>true</DebugSymbols> 58 <OutputPath> ..\..\bin\</OutputPath>58 <OutputPath>$(SolutionDir)\bin\</OutputPath> 59 59 <DefineConstants>DEBUG;TRACE</DefineConstants> 60 60 <DebugType>full</DebugType> … … 64 64 </PropertyGroup> 65 65 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'"> 66 <OutputPath> ..\..\bin\</OutputPath>66 <OutputPath>$(SolutionDir)\bin\</OutputPath> 67 67 <DefineConstants>TRACE</DefineConstants> 68 68 <Optimize>true</Optimize> -
TabularUnified trunk/sources/HeuristicLab.Algorithms.ParameterlessPopulationPyramid/3.3/HillClimber.cs ¶
r11956 r11960 39 39 // B. W. Goldman and W. F. Punch, "Parameter-less Population Pyramid," GECCO, pp. 785–792, 2014 40 40 // and the original source code in C++11 available from: https://github.com/brianwgoldman/Parameter-less_Population_Pyramid 41 [Item("Hill Climber", " Test algorithm.")]41 [Item("Hill Climber", "Binary Hill Climber.")] 42 42 [StorableClass] 43 [Creatable(" Parameterless Population Pyramid")]43 [Creatable("Algorithms")] 44 44 public class HillClimber : BasicAlgorithm { 45 45 [Storable] -
TabularUnified trunk/sources/HeuristicLab.Algorithms.ParameterlessPopulationPyramid/3.3/ParameterlessPopulationPyramid.cs ¶
r11956 r11960 39 39 // B. W. Goldman and W. F. Punch, "Parameter-less Population Pyramid," GECCO, pp. 785–792, 2014 40 40 // and the original source code in C++11 available from: https://github.com/brianwgoldman/Parameter-less_Population_Pyramid 41 [Item("Parameter-less Population Pyramid", "Binary value optimization algorithm which requires no configuration. ")]41 [Item("Parameter-less Population Pyramid", "Binary value optimization algorithm which requires no configuration. B. W. Goldman and W. F. Punch, Parameter-less Population Pyramid, GECCO, pp. 785–792, 2014")] 42 42 [StorableClass] 43 [Creatable(" Parameterless Population Pyramid")]43 [Creatable("Algorithms")] 44 44 public class ParameterlessPopulationPyramid : BasicAlgorithm { 45 45 public override Type ProblemType {
Note: See TracChangeset
for help on using the changeset viewer.