Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/06/15 16:24:33 (9 years ago)
Author:
mkommend
Message:

#2282: Changed creatable attribute and project files in P3.

Location:
trunk/sources/HeuristicLab.Algorithms.ParameterlessPopulationPyramid/3.3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.ParameterlessPopulationPyramid/3.3/HeuristicLab.Algorithms.ParameterlessPopulationPyramid-3.3.csproj

    r11958 r11960  
    1717    <DebugType>full</DebugType>
    1818    <Optimize>false</Optimize>
    19     <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
     19    <OutputPath>$(SolutionDir)\bin\</OutputPath>
    2020    <DefineConstants>DEBUG;TRACE</DefineConstants>
    2121    <ErrorReport>prompt</ErrorReport>
     
    2525    <DebugType>pdbonly</DebugType>
    2626    <Optimize>true</Optimize>
    27     <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
     27    <OutputPath>$(SolutionDir)\bin\</OutputPath>
    2828    <DefineConstants>TRACE</DefineConstants>
    2929    <ErrorReport>prompt</ErrorReport>
     
    3838  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
    3939    <DebugSymbols>true</DebugSymbols>
    40     <OutputPath>..\..\bin\</OutputPath>
     40    <OutputPath>$(SolutionDir)\bin\</OutputPath>
    4141    <DefineConstants>DEBUG;TRACE</DefineConstants>
    4242    <DebugType>full</DebugType>
     
    4646  </PropertyGroup>
    4747  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
    48     <OutputPath>..\..\bin\</OutputPath>
     48    <OutputPath>$(SolutionDir)\bin\</OutputPath>
    4949    <DefineConstants>TRACE</DefineConstants>
    5050    <Optimize>true</Optimize>
     
    5656  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
    5757    <DebugSymbols>true</DebugSymbols>
    58     <OutputPath>..\..\bin\</OutputPath>
     58    <OutputPath>$(SolutionDir)\bin\</OutputPath>
    5959    <DefineConstants>DEBUG;TRACE</DefineConstants>
    6060    <DebugType>full</DebugType>
     
    6464  </PropertyGroup>
    6565  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
    66     <OutputPath>..\..\bin\</OutputPath>
     66    <OutputPath>$(SolutionDir)\bin\</OutputPath>
    6767    <DefineConstants>TRACE</DefineConstants>
    6868    <Optimize>true</Optimize>
  • trunk/sources/HeuristicLab.Algorithms.ParameterlessPopulationPyramid/3.3/HillClimber.cs

    r11956 r11960  
    3939  // B. W. Goldman and W. F. Punch, "Parameter-less Population Pyramid," GECCO, pp. 785–792, 2014
    4040  // 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.")]
    4242  [StorableClass]
    43   [Creatable("Parameterless Population Pyramid")]
     43  [Creatable("Algorithms")]
    4444  public class HillClimber : BasicAlgorithm {
    4545    [Storable]
  • trunk/sources/HeuristicLab.Algorithms.ParameterlessPopulationPyramid/3.3/ParameterlessPopulationPyramid.cs

    r11956 r11960  
    3939  // B. W. Goldman and W. F. Punch, "Parameter-less Population Pyramid," GECCO, pp. 785–792, 2014
    4040  // 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")]
    4242  [StorableClass]
    43   [Creatable("Parameterless Population Pyramid")]
     43  [Creatable("Algorithms")]
    4444  public class ParameterlessPopulationPyramid : BasicAlgorithm {
    4545    public override Type ProblemType {
Note: See TracChangeset for help on using the changeset viewer.