home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / alde_c / misc / util / inferng / infer.h < prev    next >
Encoding:
C/C++ Source or Header  |  1986-02-01  |  835 b   |  32 lines

  1.  
  2.  
  3. /*****************************************************************
  4. **                                **
  5. **      Inference -- (C) Copyright 1985 George Hageman    **
  6. **                                **
  7. **        user-supported software:                **
  8. **                                **
  9. **            George Hageman                **
  10. **            P.O. Box 11234                **
  11. **            Boulder, Colorado 80302            **
  12. **                                **
  13. *****************************************************************/
  14.  
  15. /*
  16. **    the following are the global common variables which
  17. **    are used in the inference engine...
  18. **
  19. **    all routines except inference.c should have this
  20. **    file included.
  21. */
  22.  
  23. #define    MAX_KNOWN    500
  24.  
  25. int    numHypot, hypStack[MAX_HYPS],strBuffOfst ;
  26. char    strBuff[MAX_STRING_BUFF] ;
  27. int    ruleBuffOfst ;
  28. int    knownTrue[MAX_KNOWN], knownFalse[MAX_KNOWN] ;
  29. int    numTrue, numFalse ;
  30. struct  rule_statement_r ruleBuff[MAX_RULE_STATEMENTS] ;
  31.  
  32.