home *** CD-ROM | disk | FTP | other *** search
/ Programmer's ROM - The Computer Language Library / programmersrom.iso / ada / ai / expert.pro < prev   
Encoding:
Text File  |  1988-05-03  |  3.3 KB  |  70 lines

  1.  
  2. -------- SIMTEL20 Ada Software Repository Prologue ------------
  3. --                                                           -*
  4. -- Unit name    : EXPERT
  5. -- Version      : 1.0
  6. -- Author       : Alan McDonley
  7. --              : Texas Instruments
  8. --              : 
  9. --              : 
  10. -- DDN Address  : N/A
  11. -- Copyright    : (c)
  12. -- Date created :  11 Sep 85
  13. -- Release date :  3 Dec 85
  14. -- Last update  :  3 Dec 85
  15. -- Machine/System Compiled/Run on : VAX 11/785, VMS 4.1, DEC Ada
  16. --                                                           -*
  17. ---------------------------------------------------------------
  18. --                                                           -*
  19. -- Keywords     :  Expert System, Artificial Intelligence
  20. ----------------:
  21. --
  22. -- Abstract     :  
  23. ----------------:  
  24. -- EXPERT is a backward chaining or goal driven expert system.  It is
  25. --based on two articles, first Sept 1981 BYTE (Duda and Gaschnig) 
  26. --published the expert system in BASIC 
  27. --skirting the use of recursion, second Jan/Feb 85 issue of 
  28. --JOURNAL OF PASCAL,ADA, & MODULA-2 (Darrell Morgeson) 
  29. --published in Modula-2 with recursion 
  30. --implemented.  The listing had one logic error which caused pointer 
  31. --explosion on the last hypothesis in the GETRULE routine.  This 
  32. --implementation follows the MODULA-2 design completely and
  33. --was not designed from the ground up in Ada.  Many improvements would 
  34. --be possible if more time permitted my working on this.
  35. --                                                           -*
  36. ------------------ Revision history ---------------------------
  37. --                                                           -*
  38. -- DATE         VERSION    AUTHOR                  HISTORY
  39. -- 12/3/85      1.0     Alan McDonley           Initial Release
  40. --                                                           -*
  41. ------------------ Distribution and Copyright -----------------
  42. --                                                           -*
  43. -- This prologue must be included in all copies of this software.
  44. --
  45. -- This software is released to the Ada community.
  46. -- This software is released to the Public Domain (note:
  47. --   software released to the Public Domain is not subject
  48. --   to copyright protection).
  49. -- Restrictions on use or distribution:  NONE
  50. --                                                           -*
  51. ------------------ Disclaimer ---------------------------------
  52. --                                                           -*
  53. -- This software and its documentation are provided "AS IS" and
  54. -- without any expressed or implied warranties whatsoever.
  55. -- No warranties as to performance, merchantability, or fitness
  56. -- for a particular purpose exist.
  57. --
  58. -- Because of the diversity of conditions and hardware under
  59. -- which this software may be used, no warranty of fitness for
  60. -- a particular purpose is offered.  The user is advised to
  61. -- test the software thoroughly before relying on it.  The user
  62. -- must assume the entire risk and liability of using this
  63. -- software.
  64. --
  65. -- In no event shall any person or organization of people be
  66. -- held responsible for any direct, indirect, consequential
  67. -- or inconsequential damages or lost profits.
  68. --                                                           -*
  69. -------------------END-PROLOGUE--------------------------------
  70.