5 lines
101 B
Matlab
5 lines
101 B
Matlab
function b = isFinished(int)
|
|
% Returns 1 if the optimization was finished, else 0
|
|
|
|
b = int.finished;
|