- Timestamp:
- 07/04/11 17:13:27 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Analyzers/SymbolicDataAnalysisAlleleFrequencyAnalyzer.cs
r6135 r6503 20 20 #endregion 21 21 22 using System ;22 using System.Collections.Generic; 23 23 using System.Linq; 24 using System.Text; 24 25 using HeuristicLab.Analysis; 25 26 using HeuristicLab.Common; 26 27 using HeuristicLab.Core; 27 28 using HeuristicLab.Data; 29 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 28 30 using HeuristicLab.Parameters; 29 31 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 using System.Collections.Generic;31 using System.Text;32 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;33 32 34 33 namespace HeuristicLab.Problems.DataAnalysis.Symbolic { … … 47 46 } 48 47 49 public I ValueParameter<IntValue> AlleleTreeDepthParameter {48 public IFixedValueParameter<IntValue> AlleleTreeDepthParameter { 50 49 get { return (IFixedValueParameter<IntValue>)Parameters[AlleleTreeDepthParameterName]; } 51 50 }
Note: See TracChangeset
for help on using the changeset viewer.