home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / Crossword / Source / BackjumpWord.h < prev    next >
Encoding:
Text File  |  1992-10-11  |  356 b   |  24 lines

  1. /*
  2.  
  3. File BackjumpWord.h
  4.  
  5. This type of word is used for a backjumping search.  Each word remembers whether it participates in the current nogood.
  6.  
  7. */
  8.  
  9. #import "PlainWord.h"
  10.  
  11.  
  12. /* ————————————————————————————————————————————————————————————————————————————  */
  13.  
  14.  
  15. @interface BackjumpWord:PlainWord
  16. {
  17.     BOOL    nogood;
  18. }
  19.  
  20. - (BOOL) mustChange;
  21. - mark;
  22. - clear;
  23.  
  24. @end