Free cookie consent management tool by TermsFeed Policy Generator

Changeset 177 for trunk/sources


Ignore:
Timestamp:
04/24/08 14:07:48 (16 years ago)
Author:
gkronber
Message:

changed readonly fields to consts

Location:
trunk/sources
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Functions/Constant.cs

    r155 r177  
    3131namespace HeuristicLab.Functions {
    3232  public class Constant : FunctionBase {
    33     public static readonly string VALUE = "Value";
     33    public const string VALUE = "Value";
    3434
    3535    public override string Description {
  • trunk/sources/HeuristicLab.Functions/Variable.cs

    r155 r177  
    3232  public class Variable : FunctionBase {
    3333
    34     public static readonly string WEIGHT = "Weight";
    35     public static readonly string OFFSET = "SampleOffset";
    36     public static readonly string INDEX = "Variable";
     34    public const string WEIGHT = "Weight";
     35    public const string OFFSET = "SampleOffset";
     36    public const string INDEX = "Variable";
    3737
    3838    public override string Description {
  • trunk/sources/HeuristicLab.StructureIdentification/GPOperatorLibrary.cs

    r2 r177  
    3636    internal const string MIN_TREE_SIZE = "MinTreeSize";
    3737    internal const string ALLOWED_SUBOPERATORS = "AllowedSuboperators";
     38    internal const string TICKETS = "Tickets";
    3839
    3940    private GPOperatorGroup group;
Note: See TracChangeset for help on using the changeset viewer.