Changeset 177
- Timestamp:
- 04/24/08 14:07:48 (17 years ago)
- Location:
- trunk/sources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Functions/Constant.cs
r155 r177 31 31 namespace HeuristicLab.Functions { 32 32 public class Constant : FunctionBase { 33 public static readonlystring VALUE = "Value";33 public const string VALUE = "Value"; 34 34 35 35 public override string Description { -
trunk/sources/HeuristicLab.Functions/Variable.cs
r155 r177 32 32 public class Variable : FunctionBase { 33 33 34 public static readonlystring WEIGHT = "Weight";35 public static readonlystring OFFSET = "SampleOffset";36 public static readonlystring INDEX = "Variable";34 public const string WEIGHT = "Weight"; 35 public const string OFFSET = "SampleOffset"; 36 public const string INDEX = "Variable"; 37 37 38 38 public override string Description { -
trunk/sources/HeuristicLab.StructureIdentification/GPOperatorLibrary.cs
r2 r177 36 36 internal const string MIN_TREE_SIZE = "MinTreeSize"; 37 37 internal const string ALLOWED_SUBOPERATORS = "AllowedSuboperators"; 38 internal const string TICKETS = "Tickets"; 38 39 39 40 private GPOperatorGroup group;
Note: See TracChangeset
for help on using the changeset viewer.