- Timestamp:
- 03/31/11 11:37:45 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Analyzers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Analyzers/SymbolicDataAnalysisMultiObjectiveValidationBestSolutionAnalyzer.cs
r5882 r5907 30 30 using HeuristicLab.Parameters; 31 31 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 32 using HeuristicLab.Random;33 32 34 33 namespace HeuristicLab.Problems.DataAnalysis.Symbolic { … … 76 75 public override IOperation Apply() { 77 76 IEnumerable<int> rows = GenerateRowsToEvaluate(); 78 if ( rows.Count() <= 0) return base.Apply();77 if (!rows.Any()) return base.Apply(); 79 78 80 79 var results = ResultCollection; -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Analyzers/SymbolicDataAnalysisSingleObjectiveValidationBestSolutionAnalyzer.cs
r5882 r5907 29 29 using HeuristicLab.Parameters; 30 30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 31 using HeuristicLab.Random;32 31 33 32 namespace HeuristicLab.Problems.DataAnalysis.Symbolic { … … 80 79 var evaluator = EvaluatorParameter.ActualValue; 81 80 IEnumerable<int> rows = GenerateRowsToEvaluate(); 82 if ( rows.Count() <= 0) return base.Apply();81 if (!rows.Any()) return base.Apply(); 83 82 84 83 IExecutionContext childContext = (IExecutionContext)ExecutionContext.CreateChildOperation(evaluator);
Note: See TracChangeset
for help on using the changeset viewer.