1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 | using HeuristicLab.Core;
|
---|
23 | using HeuristicLab.Data;
|
---|
24 | using HEAL.Attic;
|
---|
25 |
|
---|
26 | namespace HeuristicLab.Optimization {
|
---|
27 | [StorableType("32f2e082-9d02-4006-85d5-d2006cb47def")]
|
---|
28 | public interface IDiscreteDoubleValueModifier : IOperator {
|
---|
29 | ILookupParameter<DoubleValue> ValueParameter { get; }
|
---|
30 | /// <summary>
|
---|
31 | /// The start value of the parameter, will be assigned to <see cref="ValueParameter"/> as soon as <see cref="IndexParamter"/> equals <see cref="StartIndexParameter"/>.
|
---|
32 | /// </summary>
|
---|
33 | IValueLookupParameter<DoubleValue> StartValueParameter { get; }
|
---|
34 | /// <summary>
|
---|
35 | /// The end value of the parameter, will be assigned to <see cref="ValueParameter"/> as soon as <see cref="IndexParamter"/> equals <see cref="EndIndexParameter"/>.
|
---|
36 | /// </summary>
|
---|
37 | IValueLookupParameter<DoubleValue> EndValueParameter { get; }
|
---|
38 | /// <summary>
|
---|
39 | /// The index that denotes from which point in the function (relative to <see cref="StartIndexParameter"/> and <see cref="EndIndexParameter"/> the value should be assigned.
|
---|
40 | /// </summary>
|
---|
41 | ILookupParameter<IntValue> IndexParameter { get; }
|
---|
42 | /// <summary>
|
---|
43 | /// As soon as <see cref="IndexParameter"/> is >= this parameter the value will start to be modified.
|
---|
44 | /// </summary>
|
---|
45 | IValueLookupParameter<IntValue> StartIndexParameter { get; }
|
---|
46 | /// <summary>
|
---|
47 | /// As long as <see cref="IndexParameter"/> is <= this parameter the value will start to be modified.
|
---|
48 | /// </summary>
|
---|
49 | IValueLookupParameter<IntValue> EndIndexParameter { get; }
|
---|
50 | }
|
---|
51 | }
|
---|