Changeset 471
- Timestamp:
- 08/08/08 21:15:01 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.StructureIdentification/FunctionLibraryInjector.cs
r468 r471 32 32 namespace HeuristicLab.StructureIdentification { 33 33 public class FunctionLibraryInjector : OperatorBase { 34 private const string TARGETVARIABLE = "TargetVariable";35 34 private const string ALLOWEDFEATURES = "AllowedFeatures"; 36 35 private const string MINTIMEOFFSET = "MinTimeOffset"; … … 48 47 public FunctionLibraryInjector() 49 48 : base() { 50 AddVariableInfo(new VariableInfo(TARGETVARIABLE, "Target variable", typeof(IntData), VariableKind.In));51 49 AddVariableInfo(new VariableInfo(ALLOWEDFEATURES, "List of indexes of allowed features", typeof(ItemList<IntData>), VariableKind.In)); 52 50 GetVariableInfo(ALLOWEDFEATURES).Local = true;
Note: See TracChangeset
for help on using the changeset viewer.