- Timestamp:
- 05/08/20 16:29:32 (5 years ago)
- Location:
- branches/2521_ProblemRefactoring/HeuristicLab.Parameters/3.3
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Parameters/3.3/FixedValueParameter.cs
r17317 r17532 34 34 IItem IFixedValueParameter.Value { get { return Value; } } 35 35 36 public override T Value { 37 get => base.Value; 38 set => throw new NotSupportedException("FixedValueParameters do not support setting their value."); 39 } 40 36 41 public override void ForceValue(T value) { 37 42 throw new NotSupportedException("FixedValueParameters do not support setting their value."); -
branches/2521_ProblemRefactoring/HeuristicLab.Parameters/3.3/HeuristicLab.Parameters-3.3.csproj
r17257 r17532 127 127 <Compile Include="OptionalConstrainedValueParameter.cs" /> 128 128 <Compile Include="Plugin.cs" /> 129 <Compile Include="ReferenceParameter.cs" /> 129 130 <Compile Include="ScopeTreeLookupParameter.cs" /> 130 131 <Compile Include="ValueParameter.cs" />
Note: See TracChangeset
for help on using the changeset viewer.