modules/ml-ext/ml/xgboost-model-parser/src/main/java/org/apache/ignite/ml/xgboost/parser/XGBoostModelLexer.java [37:105]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    static {
        RuntimeMetaData.checkVersion("4.7.1", RuntimeMetaData.VERSION);
    }

    /** Decision to DFA. */
    protected static final DFA[] _decisionToDFA;

    /** Shared context cache. */
    protected static final PredictionContextCache _sharedContextCache = new PredictionContextCache();

    /** */
    public static final int YES = 1;

    /** */
    public static final int NO = 2;

    /** */
    public static final int MISSING = 3;

    /** */
    public static final int EQ = 4;

    /** */
    public static final int COMMA = 5;

    /** */
    public static final int PLUS = 6;

    /** */
    public static final int MINUS = 7;

    /** */
    public static final int DOT = 8;

    /** */
    public static final int EXP = 9;

    /** */
    public static final int BOOSTER = 10;

    /** */
    public static final int LBRACK = 11;

    /** */
    public static final int RBRACK = 12;

    /** */
    public static final int COLON = 13;

    /** */
    public static final int LEAF = 14;

    /** */
    public static final int INT = 15;

    /** */
    public static final int DOUBLE = 16;

    /** */
    public static final int STRING = 17;

    /** */
    public static final int NEWLINE = 18;

    /** */
    public static final int LT = 19;

    /** */
    public static final int WS = 20;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



modules/ml-ext/ml/xgboost-model-parser/src/main/java/org/apache/ignite/ml/xgboost/parser/XGBoostModelParser.java [45:113]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    static {
        RuntimeMetaData.checkVersion("4.7.1", RuntimeMetaData.VERSION);
    }

    /** DFA. */
    protected static final DFA[] _decisionToDFA;

    /** Shared context cache. */
    protected static final PredictionContextCache _sharedContextCache = new PredictionContextCache();

    /** */
    public static final int YES = 1;

    /** */
    public static final int NO = 2;

    /** */
    public static final int MISSING = 3;

    /** */
    public static final int EQ = 4;

    /** */
    public static final int COMMA = 5;

    /** */
    public static final int PLUS = 6;

    /** */
    public static final int MINUS = 7;

    /** */
    public static final int DOT = 8;

    /** */
    public static final int EXP = 9;

    /** */
    public static final int BOOSTER = 10;

    /** */
    public static final int LBRACK = 11;

    /** */
    public static final int RBRACK = 12;

    /** */
    public static final int COLON = 13;

    /** */
    public static final int LEAF = 14;

    /** */
    public static final int INT = 15;

    /** */
    public static final int DOUBLE = 16;

    /** */
    public static final int STRING = 17;

    /** */
    public static final int NEWLINE = 18;

    /** */
    public static final int LT = 19;

    /** */
    public static final int WS = 20;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



