Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/26/20 16:43:25 (4 years ago)
Author:
pfleck
Message:

#3040 Added a constant opt evaluator for vectors that uses the existing AutoDiff library by unrolling all vector operations.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3040_VectorBasedGP/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/OpCodes.cs

    r17554 r17726  
    8787    Skewness = 60,
    8888    Kurtosis = 61,
    89     EuclideanDistance = 62 ,
     89    EuclideanDistance = 62,
    9090    Covariance = 63,
     91    SubVector = 64,
    9192
    9293  }
     
    156157    public const byte EuclideanDistance = (byte)OpCode.EuclideanDistance;
    157158    public const byte Covariance = (byte)OpCode.Covariance;
     159    public const byte SubVector = (byte)OpCode.SubVector;
    158160
    159161
     
    223225      { typeof(EuclideanDistance), OpCodes.EuclideanDistance },
    224226      { typeof(Covariance), OpCodes.Covariance },
     227      { typeof(SubVector), OpCodes.SubVector },
    225228    };
    226229
Note: See TracChangeset for help on using the changeset viewer.