Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/01/10 04:46:06 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • worked on algorithms and parameters
Location:
trunk/sources/HeuristicLab.Parameters/3.3
Files:
1 added
2 edited

Legend:

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

    r2890 r2891  
    6868    <None Include="HeuristicLabParametersPlugin.cs.frame" />
    6969    <Compile Include="ConstrainedValueParameter.cs" />
     70    <Compile Include="ValueParameter.cs" />
    7071    <Compile Include="LookupParameter.cs" />
    7172    <Compile Include="OptionalValueParameter.cs" />
  • trunk/sources/HeuristicLab.Parameters/3.3/OptionalValueParameter.cs

    r2890 r2891  
    2727namespace HeuristicLab.Parameters {
    2828  /// <summary>
    29   /// A parameter whose value is defined it the parameter itself. The value of the parameter can be null, if the parameter is not set.
     29  /// A parameter whose value is defined it the parameter itself or is null.
    3030  /// </summary>
    31   [Item("OptionalValueParameter<T>", "A parameter whose value is defined it the parameter itself. The value of the parameter can be null, if the parameter is not set.")]
     31  [Item("OptionalValueParameter<T>", "A parameter whose value is defined it the parameter itself or is null.")]
    3232  public class OptionalValueParameter<T> : Parameter, IValueParameter<T> where T : class, IItem {
    3333    private T value;
Note: See TracChangeset for help on using the changeset viewer.