Last change
on this file since 5760 was
5316,
checked in by epitzer, 14 years ago
|
added item descriptions, implemented IStorableContent interface, added missing StorableClass attributes, and fixed value updater reset (#852)
|
File size:
887 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Core;
|
---|
6 | using HeuristicLab.Data;
|
---|
7 | using HeuristicLab.Optimization;
|
---|
8 | using HeuristicLab.Parameters;
|
---|
9 |
|
---|
10 | namespace HeuristicLab.Algorithms.ParticleSwarmOptimization {
|
---|
11 |
|
---|
12 | public interface IDiscreteDoubleMatrixModifier : IItem {
|
---|
13 | ILookupParameter<DoubleMatrix> ValueParameter { get; }
|
---|
14 | IValueLookupParameter<DoubleValue> ScaleParameter { get; }
|
---|
15 | ConstrainedValueParameter<IDiscreteDoubleValueModifier> ScalingOperatorParameter { get; }
|
---|
16 | IValueLookupParameter<DoubleValue> StartValueParameter { get; }
|
---|
17 | IValueLookupParameter<DoubleValue> EndValueParameter { get; }
|
---|
18 | ILookupParameter<IntValue> IndexParameter { get; }
|
---|
19 | IValueLookupParameter<IntValue> StartIndexParameter { get; }
|
---|
20 | IValueLookupParameter<IntValue> EndIndexParameter { get; }
|
---|
21 | }
|
---|
22 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.