- Timestamp:
- 09/29/14 17:39:19 (10 years ago)
- Location:
- branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Operators
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Operators/SingleObjectiveAnalyzer.cs
r11396 r11405 49 49 public override IOperation Apply() { 50 50 var host = ProblemDefinitionParameter.ActualValue; 51 if (host.Instance == null) throw new InvalidOperationException(" Script instance is null, maybe the code doesn't compile.");51 if (host.Instance == null) throw new InvalidOperationException("Problem definition is not available."); 52 52 var config = ConfigurationParameter.ActualValue; 53 53 var results = ResultsParameter.ActualValue; -
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Operators/SingleObjectiveEvaluator.cs
r11396 r11405 67 67 var random = RandomParameter.ActualValue; 68 68 var host = ProblemDefinitionParameter.ActualValue; 69 if (host.Instance == null) throw new InvalidOperationException(" Script instance is null, maybe the code doesn't compile.");69 if (host.Instance == null) throw new InvalidOperationException("Problem definition is not available."); 70 70 var config = ConfigurationParameter.ActualValue; 71 71 var vector = Helper.Extract(ExecutionContext.Scope, config);
Note: See TracChangeset
for help on using the changeset viewer.