Changeset 3740 for trunk/sources/HeuristicLab.Parameters
- Timestamp:
- 05/10/10 15:10:36 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Parameters/3.3/ScopeTreeLookupParameter.cs
r3687 r3740 55 55 depth = 1; 56 56 } 57 public ScopeTreeLookupParameter(string name, int depth) 58 : base(name) { 59 this.depth = depth; 60 } 57 61 public ScopeTreeLookupParameter(string name, string description) 58 62 : base(name, description) { 59 63 depth = 1; 60 64 } 65 public ScopeTreeLookupParameter(string name, string description, int depth) 66 : base(name, description) { 67 this.depth = depth; 68 } 61 69 public ScopeTreeLookupParameter(string name, string description, string actualName) 62 70 : base(name, description, actualName) { 63 71 depth = 1; 72 } 73 public ScopeTreeLookupParameter(string name, string description, string actualName, int depth) 74 : base(name, description, actualName) { 75 this.depth = depth; 64 76 } 65 77 [StorableConstructor]
Note: See TracChangeset
for help on using the changeset viewer.