home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / pxg.zip / PXG.DOC < prev    next >
Text File  |  1985-10-19  |  3KB  |  74 lines

  1.  
  2.  
  3. PXG - The Pascal Expert Generator
  4.  
  5. By Samuel H. Smith,  Public Domain Material, Version 1.0, 4-Oct-85
  6.  
  7.  
  8. This program allows you to prepare a set of rules for a
  9. decision-tree expert system.
  10.  
  11. You teach the expert by repeatedly "Learning" new facts in the
  12. interactive learn mode.
  13.  
  14. When you have your rules working properly, PXG will generate a
  15. stand-alone expert program in turbo pascal!
  16.  
  17.  
  18. This disk contains the following files:
  19.  
  20.    PXG.COM        The pascal expert generator
  21.    PXG.DOC        Documentation for the pascal expert generator
  22.    PXG.PAS        Source code for the pascal expert generator
  23.    PXG.INC        Include file needed when compiling your experts
  24.  
  25.    LANGEXP.KDB    A knowledge base for a language selection expert
  26.    LANGEXP.PAS    Generated source code for the language expert
  27.    LANGEXP.COM    The compiled language expert example
  28.  
  29.    MECHANIC.KDB   The knowledge base for an auto mechanic expert
  30.    MECHANIC.PAS   Generated source code for the expert mechanic
  31.    MECHANIC.COM   The compiled expert mechanic example
  32.  
  33.  
  34.  
  35.  
  36. Legal commands while running PXG:
  37.  
  38.    New          Create a new knowledge base
  39.                 Use this to erase the current set of rules and prepare
  40.                 to create your own expert.   You will be prompted to
  41.                 enter the title of the expert.  This title will be
  42.                 included in the expert program that you generate.
  43.  
  44.    Read         Read a knowledge base from a disk file
  45.                 Use this to load in a saved knowledge base.  You
  46.                 can load either of the demonstration knowledge
  47.                 bases (LANGEXP or MECHANIC) with this option.
  48.  
  49.    Write        Write the current knowledge base to a file
  50.                 Use this to save your knowledge bases.  You can
  51.                 also edit a saved knowledge base with a text
  52.                 editor to improve the rules.
  53.  
  54.    Display      Display the rules in the current knowledge base
  55.                 Use this to get a listing of all of the current
  56.                 rules.
  57.  
  58.    Program      Generate an expert program from this knowledge base
  59.                 PXG will write a complete, ready to compile program
  60.                 in turbo pascal to implement your expert!
  61.  
  62.    Learn        Test this knowledge base and learn new rules
  63.                 Operate the expert and learn new rules.  This is
  64.                 the way you refine and build up your expert.
  65.  
  66.    Quit         Exit to the system
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.