Changeset 12494
- Timestamp:
- 06/23/15 12:30:27 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.ExternalEvaluation.Matlab/3.3/MatlabParameterVectorEvaluator.cs
r12012 r12494 70 70 //mkommend: necessary because matlabConnector.Quit() does not work 71 71 try { 72 matLabConnector.Execute("exit"); 73 } 74 catch (COMException) { } 75 finally { 72 if (matLabConnector != null) 73 matLabConnector.Execute("exit"); 74 } catch (COMException) { } finally { 76 75 matLabConnector = null; 77 76 }
Note: See TracChangeset
for help on using the changeset viewer.