weka.core.expressionlanguage.parser.sym Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weka-dev Show documentation
Show all versions of weka-dev Show documentation
The Waikato Environment for Knowledge Analysis (WEKA), a machine
learning workbench. This version represents the developer version, the
"bleeding edge" of development, you could say. New functionality gets added
to this version.
//----------------------------------------------------
// The following code was generated by CUP v0.11b 20160615 (GIT 4ac7450)
//----------------------------------------------------
package weka.core.expressionlanguage.parser;
/** CUP generated interface containing symbol constants. */
public interface sym {
/* terminals */
public static final int TIMES = 11;
public static final int AND = 16;
public static final int IS = 24;
public static final int LT = 20;
public static final int PLUS = 9;
public static final int OR = 17;
public static final int RPAREN = 7;
public static final int EQUAL = 19;
public static final int DIVISION = 12;
public static final int NOT = 18;
public static final int IDENTIFIER = 2;
public static final int POW = 13;
public static final int GT = 22;
public static final int LPAREN = 6;
public static final int LE = 21;
public static final int REGEXP = 25;
public static final int BOOLEAN = 5;
public static final int STRING = 4;
public static final int COMMA = 8;
public static final int FLOAT = 3;
public static final int EOF = 0;
public static final int UPLUS = 15;
public static final int GE = 23;
public static final int MINUS = 10;
public static final int error = 1;
public static final int UMINUS = 14;
public static final String[] terminalNames = new String[] {
"EOF",
"error",
"IDENTIFIER",
"FLOAT",
"STRING",
"BOOLEAN",
"LPAREN",
"RPAREN",
"COMMA",
"PLUS",
"MINUS",
"TIMES",
"DIVISION",
"POW",
"UMINUS",
"UPLUS",
"AND",
"OR",
"NOT",
"EQUAL",
"LT",
"LE",
"GT",
"GE",
"IS",
"REGEXP"
};
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy