This is BackjumpWord.m in view mode; [Download] [Up]
/*
File BackjumpWord.m
This type of word is used for a backjumping search. Each word remembers whether it participates in the current nogood.
*/
#import <appkit/appkit.h>
#import "Backjump.h"
/* 行行行行行行行行行行行行行行行行行行行行行行行行行行行行行行行行行行行行行行 */
@implementation BackjumpWord:PlainWord
- (BOOL) mustChange { return nogood; }
- mark { nogood = YES; return self; }
- clear { nogood = NO; return self; }
@endThese are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.