/*

File LeapfrogState.h

This is the state used for leapfrog search.  When backjumping past a square, the square remembers its current value and tries that value first the next time through.

*/

#import "BackjumpState.h"


/* 行行行行行行行行行行行行行行行行行行行行行行行行行行行行行行行行行行行行行行  */


@interface LeapfrogState:BackjumpState
{
}

@end