|
FuzzyFOTLatticeMain.java
|
// FILE. . . . . d:/hak/hlt/src/hlt/fot/fuz/syntax/sources/FuzzyFOTLatticeMain.java // EDIT BY . . . Hassan Ait-Kaci // ON MACHINE. . Hak-Laptop // STARTED ON. . Sun Jul 15 08:10:15 2018
|
import java.io.File;
This file (FuzzyFOTLatticeMain) defines is the root
Java class for the FFF parser FFF.
|
public class FuzzyFOTLatticeMain { public static FuzzyFOTLatticeTokenizer tokenizer; public static FuzzyFOTLatticeParser parser; public static void main (String args[]) { try { if(args.length>0) tokenizer = new FuzzyFOTLatticeTokenizer(new File(args[0])); else tokenizer = new FuzzyFOTLatticeTokenizer(); try { (parser = new FuzzyFOTLatticeParser(tokenizer)).parse(); } catch (Exception e) { System.err.println("*** Parsing error: "+e); e.printStackTrace(); } } catch (Exception e) { System.err.println("*** Tokenizing error: "+e); } } }
This file was generated on Wed Dec 18 03:39:39 PST 2019 from file FuzzyFOTLatticeMain.java
by the hlt.language.tools.Hilite Java tool written by Hassan Aït-Kaci