⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bifv01constants.java

📁 java编写的贝叶斯网络分类器(貌似没有模型构建和参数学习过程)
💻 JAVA
字号:
/* Generated By:JavaCC: Do not edit this line. BIFv01Constants.java */
/* This parser uses the data structures in the JavaBayes core *
 * engine (package BayesianNetworks); other implementations   *
 * may use different data structures                          */
package Parsers.BIFv01;

public interface BIFv01Constants {

  int EOF = 0;
  int NETWORK = 8;
  int VARIABLE = 9;
  int PROBABILITY = 10;
  int PROPERTY = 11;
  int VARIABLETYPE = 12;
  int DISCRETE = 13;
  int DEFAULTVALUE = 14;
  int TABLEVALUES = 15;
  int PROPERTYSTRING = 16;
  int WORD = 17;
  int LETTER = 18;
  int DIGIT = 19;
  int NUMBER = 20;
  int EXPONENT = 21;

  int DEFAULT = 0;

  String[] tokenImage = {
    "<EOF>",
    "\" \"",
    "\"\\t\"",
    "\"\\n\"",
    "\"\\r\"",
    "<token of kind 5>",
    "<token of kind 6>",
    "\",\"",
    "\"network\"",
    "\"variable\"",
    "\"probability\"",
    "\"property\"",
    "\"type\"",
    "\"discrete\"",
    "\"default\"",
    "\"table\"",
    "<PROPERTYSTRING>",
    "<WORD>",
    "<LETTER>",
    "<DIGIT>",
    "<NUMBER>",
    "<EXPONENT>",
    "\"{\"",
    "\"}\"",
    "\"[\"",
    "\"]\"",
    "\";\"",
    "\"(\"",
    "\")\"",
    "\"|\"",
  };

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -