Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/09/16 15:34:33 (8 years ago)
Author:
gkronber
Message:

#2650 added new symbol FactorVariable (renamed previous symbol to BinaryFactorVariable)
Work in progress.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/symbreg-factors-2650/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/OpCodes.cs

    r14243 r14249  
    8484    public const byte Bessel = 44;
    8585    public const byte FactorVariable = 46;
     86    public const byte BinaryFactorVariable = 47;
     87
    8688
    8789    private static Dictionary<Type, byte> symbolToOpcode = new Dictionary<Type, byte>() {
     
    132134      { typeof(Erf), OpCodes.Erf},
    133135      { typeof(Bessel), OpCodes.Bessel},
    134       { typeof(BinaryFactorVariable), OpCodes.FactorVariable }
     136      { typeof(FactorVariable), OpCodes.FactorVariable },
     137      { typeof(BinaryFactorVariable), OpCodes.BinaryFactorVariable }
    135138    };
    136139
Note: See TracChangeset for help on using the changeset viewer.