Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PSO/HeuristicLab.Algorithms.ParticleSwarmOptimization/3.3/IDiscreteDoubleMatrixModifier.cs @ 5760

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 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Core;
6using HeuristicLab.Data;
7using HeuristicLab.Optimization;
8using HeuristicLab.Parameters;
9
10namespace 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.