Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Data;
|
---|
6 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
7 | using HeuristicLab.Common;
|
---|
8 | using HeuristicLab.Core;
|
---|
9 |
|
---|
10 | namespace HeuristicLab.Problems.MetaOptimization {
|
---|
11 | [StorableClass]
|
---|
12 | public class IntValueParameterConfiguration : ValueTypeParameterConfiguration<IntValue> {
|
---|
13 |
|
---|
14 | public IntValueParameterConfiguration(ParameterConfiguration parentConfiguration, string parameterName, IValueParameter valueParameter) : base(parentConfiguration, parameterName, valueParameter) {
|
---|
15 | }
|
---|
16 |
|
---|
17 | protected IntValueParameterConfiguration() { }
|
---|
18 | [StorableConstructor]
|
---|
19 | protected IntValueParameterConfiguration(bool deserializing) : base(deserializing) { }
|
---|
20 | protected IntValueParameterConfiguration(IntValueParameterConfiguration original, Cloner cloner) : base(original, cloner) { }
|
---|
21 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
22 | return new IntValueParameterConfiguration(this, cloner);
|
---|
23 | }
|
---|
24 | }
|
---|
25 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.