/*
 *  history_protocol.h
 *  ddetest
 *
 *  Created by Ashley on 31/03/2007.
 *  Copyright 2007 __MyCompanyName__. All rights reserved.
 *
 */

@protocol history
- (id) initWithRhs:(id)rhs;
- (id) rhs;
- (void) updateHistory:(double *)gradients state:(double *)state time:(double) t;
- (double) pastValue:(int)i time:(double)t mark:(int)markno;

@end