home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 241_01 / keywords.h < prev    next >
Encoding:
Text File  |  1987-08-31  |  1.0 KB  |  39 lines

  1. /*
  2. HEADER:         CUG241;
  3. TITLE:          Rule-Based Compiler for Expert System;
  4. DATE:           12/30/85;
  5. VERSION:
  6. DESCRIPTION:   "Source code for rule-based compiler for an Expert System";
  7. KEYWORDS:       Artificial Intelligence, expert systems, rule-based compiler;
  8. SYSTEM:         MS-DOS or UNIX System V;
  9. FILENAME:       ;
  10. WARNINGS:      "User-supported, non-commercial"
  11. AUTHORS:        George Hageman; 
  12. COMPILERS:      Microsoft C V3.00 or UNIX System V Portable C Compiler;
  13. REFERENCES:     ;
  14. ENDREF
  15. */
  16.  
  17. char    *keyWords[NUM_KEYWORDS] =
  18.     {
  19.     "AND           ",
  20.     "ANDIF         ",
  21.     "ANDIFRUN      ",
  22.     "ANDNOT        ",
  23.     "ANDNOTRUN     ",
  24.     "ANDRUN        ",
  25.     "ANDTHEN       ", 
  26.     "ANDTHENHYP    ",
  27.     "ANDTHENRUN    ",
  28.     "ANDTHENRUNHYP ",
  29.     "IF            ",
  30.     "IFNOT         ",
  31.     "IFNOTRUN      ",
  32.     "IFRUN         ",
  33.     "THEN          ",
  34.     "THENHYP       ",
  35.     "THENRUN       ",
  36.     "THENRUNHYP    "
  37.     } ;
  38.  
  39.