Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/14/17 18:07:51 (7 years ago)
Author:
mkommend
Message:

#745: Adapted elastic net linear regression to support basic algorithms.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Algorithms.DataAnalysis.Glmnet/3.4/ElasticNetLinearRegression.cs

    r14461 r14674  
    2222using System;
    2323using System.Linq;
     24using System.Threading;
    2425using HeuristicLab.Analysis;
    2526using HeuristicLab.Common;
    2627using HeuristicLab.Core;
    2728using HeuristicLab.Data;
    28 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    2929using HeuristicLab.Optimization;
    3030using HeuristicLab.Parameters;
     
    7979    }
    8080
    81     protected override void Run() {
     81    protected override void Run(CancellationToken cancellationToken) {
    8282      if (Lambda == null) {
    8383        CreateSolutionPath();
Note: See TracChangeset for help on using the changeset viewer.