Changeset 9698 for branches/HeuristicLab.ExternalEvaluation Scientific/HeuristicLab.Problems.ExternalEvaluation.Scilab/3.3/ScilabParameterVectorEvaluator.cs
- Timestamp:
- 07/05/13 12:37:42 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.ExternalEvaluation Scientific/HeuristicLab.Problems.ExternalEvaluation.Scilab/3.3/ScilabParameterVectorEvaluator.cs
r9690 r9698 22 22 using System; 23 23 using System.IO; 24 using System.Linq; 24 25 using HeuristicLab.Common; 25 26 using HeuristicLab.Core; … … 89 90 var parameterVector = ParameterVectorParameter.ActualValue; 90 91 var parameterNames = ParameterNamesParameter.ActualValue; 92 if (parameterNames.Any(string.IsNullOrEmpty)) throw new ArgumentException("Not all parameter names are provided."); 91 93 var scilab = DotNetScilab.Scilab.Instance; 92 94
Note: See TracChangeset
for help on using the changeset viewer.