home *** CD-ROM | disk | FTP | other *** search
/ No Fragments Archive 10: Diskmags / nf_archive_10.iso / MAGS / SMARTMAG / V2.MSA / XADVISOR.STQ_HIRING.RUL < prev    next >
Lisp/Scheme  |  2003-12-17  |  4KB  |  60 lines

  1. ;***************************************************************************
  2. ;*                                                                         *
  3. ;*  HIRING.RUL XAdvisor Knowledge Base.  Written by Christopher F. Chabris *
  4. ;*                                                                         *
  5. ;*  START magazine, Fall 1986.      Copyright 1986 by Antic Publishing.    *
  6. ;*                                                                         *
  7. ;***************************************************************************
  8. ;
  9. ; Rules to advise a department chairman whether to offer a candidate
  10. ; a senior faculty, junior faculty, or research position.
  11.  
  12.  
  13. (if (("candidate is one of the top ten in his or her field"))
  14.     ("advise offering the candidate a senior faculty position"))
  15. (if (("candidate is highly recommended by one of the top ten in the field")
  16.      ("candidate impressed the interviewer")
  17.      ("candidate has an impressive resume"))
  18.     ("advise offering the candidate a junior faculty position"))
  19. (if (("candidate is highly recommended by one of the top ten in the field")
  20.      ("candidate impressed the interviewer")
  21.      ("candidate's spouse is on the faculty"))
  22.     ("advise offering the candidate a junior faculty position"))
  23. (if (("candidate impressed the interviewer")
  24.      ("candidate received his or her degree at a prestigious school"))
  25.     ("advise offering the candidate a research position"))
  26. (if (("candidate's spouse is on the faculty"))
  27.     ("advise offering the candidate a research position"))
  28.  
  29. (if (("candidate received his or her degree at a prestigious school")
  30.      ("candidate has well known publications")
  31.      ("candidate has held a significant research position"))
  32.     ("candidate has an impressive resume"))
  33. (if (("candidate received his or her degree at Carnegie-Mellon"))
  34.     ("candidate received his or her degree at a prestigious school"))
  35. (if (("candidate received his or her degree at MIT"))
  36.     ("candidate received his or her degree at a prestigious school"))
  37. (if (("candidate received his or her degree at Stanford"))
  38.     ("candidate received his or her degree at a prestigious school"))
  39. (if (("candidate received his or her degree at Yale"))
  40.     ("candidate received his or her degree at a prestigious school"))
  41. (if (("candidate has had a faculty position at another institution"))
  42.     ("candidate has held a significant research position"))
  43. (if (("candidate has worked in industry for at least two years"))
  44.     ("candidate has held a significant research position"))
  45. (if (("candidate has had a post-doctoral fellowship at an institution"))
  46.     ("candidate has held a significant research position"))
  47. (if (("candidate was articulate and knowledgeable during the interview")
  48.      ("candidate did not make any glaring errors during the interview"))
  49.     ("candidate impressed the interviewer"))
  50. (if (("candidate did not come to the interview dressed like a student")
  51.      ("candidate did not make rude jokes about the institution or its rivals")
  52.      ("candidate did not reply condescendingly to the interviewer"))
  53.     ("candidate did not make any glaring errors during the interview"))
  54.  
  55. ; A few constant definitions for convenience in querying the system:
  56. (setq senior '("advise offering the candidate a senior faculty position"))
  57. (setq junior '("advise offering the candidate a junior faculty position"))
  58. (setq research '("advise offering the candidate a research position"))
  59.  
  60.