Free cookie consent management tool by TermsFeed Policy Generator

Changeset 2044


Ignore:
Timestamp:
06/15/09 16:48:24 (15 years ago)
Author:
gkronber
Message:

Fixed a minor issue introduced with r2043. #644

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.SupportVectorMachines/3.2/SupportVectorRegression.cs

    r2043 r2044  
    7373      get {
    7474        if (!engine.Terminated) throw new InvalidOperationException("The algorithm is still running. Wait until the algorithm is terminated to retrieve the result.");
    75         IScope bestModelScope = engine.GlobalScope.GetVariableValue<IScope>("BestValidationSolution", false);
     75        IScope bestModelScope = engine.GlobalScope.SubScopes[0];
    7676        return CreateSVMModel(bestModelScope);
    7777      }
Note: See TracChangeset for help on using the changeset viewer.