- Timestamp:
- 07/17/11 22:51:11 (13 years ago)
- Location:
- branches/QAPAlgorithms
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/QAPAlgorithms
- Property svn:ignore
-
old new 12 12 *.psess 13 13 *.vsp 14 *.docstates
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/QAPAlgorithms/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Analyzers/SymbolicDataAnalysisAlleleFrequencyAnalyzer.cs
r6135 r6569 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 } -
branches/QAPAlgorithms/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/HeuristicLabProblemsDataAnalysisSymbolicPlugin.cs.frame
r5860 r6569 26 26 27 27 namespace HeuristicLab.Problems.DataAnalysis.Symbolic { 28 [Plugin("HeuristicLab.Problems.DataAnalysis.Symbolic","Provides base classes for symbolic data analysis tasks.", "3.4. 0.$WCREV$")]28 [Plugin("HeuristicLab.Problems.DataAnalysis.Symbolic","Provides base classes for symbolic data analysis tasks.", "3.4.1.$WCREV$")] 29 29 [PluginFile("HeuristicLab.Problems.DataAnalysis.Symbolic-3.4.dll", PluginFileType.Assembly)] 30 30 [PluginDependency("HeuristicLab.Analysis", "3.3")] -
branches/QAPAlgorithms/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Properties/AssemblyInfo.frame
r5860 r6569 53 53 // by using the '*' as shown below: 54 54 [assembly: AssemblyVersion("3.4.0.0")] 55 [assembly: AssemblyFileVersion("3.4. 0.$WCREV$")]55 [assembly: AssemblyFileVersion("3.4.1.$WCREV$")] -
branches/QAPAlgorithms/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/SymbolicDataAnalysisProblem.cs
r6135 r6569 202 202 Operators.Add(new SymbolicDataAnalysisVariableFrequencyAnalyzer()); 203 203 Operators.Add(new MinAverageMaxSymbolicExpressionTreeLengthAnalyzer()); 204 Operators.Add(new SymbolicDataAnalysisAlleleFrequencyAnalyzer());205 204 ParameterizeOperators(); 206 205 } -
branches/QAPAlgorithms/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/SymbolicDataAnalysisSingleObjectiveProblem.cs
r5847 r6569 79 79 80 80 MaximizationParameter.Hidden = true; 81 InitializeOperators(); 81 82 RegisterEventHandler(); 82 83 } … … 85 86 private void AfterDeserialization() { 86 87 RegisterEventHandler(); 88 } 89 90 private void InitializeOperators() { 91 Operators.Add(new SymbolicDataAnalysisAlleleFrequencyAnalyzer()); 92 ParameterizeOperators(); 87 93 } 88 94 -
branches/QAPAlgorithms/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Tests/Properties/AssemblyInfo.cs
r5809 r6569 52 52 // by using the '*' as shown below: 53 53 [assembly: AssemblyVersion("3.4.0.0")] 54 [assembly: AssemblyFileVersion("3.4. 0.0")]54 [assembly: AssemblyFileVersion("3.4.1.0")]
Note: See TracChangeset
for help on using the changeset viewer.