- Timestamp:
- 12/20/11 13:54:57 (13 years ago)
- Location:
- branches/HeuristicLab.Hive.Azure
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive.Azure
- Property svn:ignore
-
old new 4 4 *.suo 5 5 *.vsp 6 Doxygen 6 7 Google.ProtocolBuffers-0.9.1.dll 7 8 HeuristicLab 3.3.5.1.ReSharper.user 8 9 HeuristicLab 3.3.6.0.ReSharper.user 9 10 HeuristicLab.4.5.resharper.user 11 HeuristicLab.ExtLibs.6.0.ReSharper.user 10 12 HeuristicLab.resharper.user 11 13 ProtoGen.exe … … 16 18 bin 17 19 protoc.exe 18 HeuristicLab.ExtLibs.6.0.ReSharper.user19 Doxygen
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/HeuristicLab.Hive.Azure/HeuristicLab.Analysis
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Analysis (added) merged: 7021,7124,7126,7172
- Property svn:mergeinfo changed
-
branches/HeuristicLab.Hive.Azure/HeuristicLab.Analysis/3.3/ValueAnalysis/MinAverageMaxValueAnalyzer.cs
r5445 r7215 68 68 69 69 #region Properties 70 public bool EnabledByDefault { 71 get { return true; } 72 } 70 73 private MinAverageMaxValueCalculator MinAverageMaxValueCalculator { 71 74 get { return (MinAverageMaxValueCalculator)OperatorGraph.InitialOperator; } … … 81 84 } 82 85 #endregion 86 83 87 [Storable] 84 88 private ResultsCollector resultsCollector; … … 193 197 else if (!CollectMaxValueInResults.Value && maxValueParameter != null) 194 198 resultsCollector.CollectedValues.Remove(maxValueParameter); 195 199 } 196 200 197 201 private void CollectMinValueInResultsParameter_ValueChanged(object sender, EventArgs e) { -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Analysis/3.3/ValueAnalysis/ValueAnalyzer.cs
r5445 r7215 50 50 51 51 #region Properties 52 public bool EnabledByDefault { 53 get { return true; } 54 } 52 55 private DataTableValuesCollector DataTableValuesCollector { 53 56 get { return (DataTableValuesCollector)OperatorGraph.InitialOperator; } … … 63 66 private ValueAnalyzer(ValueAnalyzer original, Cloner cloner) 64 67 : base(original, cloner) { 65 68 Initialize(); 66 69 } 67 70 public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset
for help on using the changeset viewer.