19 lines
365 B
C
19 lines
365 B
C
|
|
||
|
#ifndef performance_h
|
||
|
#define performance_h
|
||
|
|
||
|
#include "compat.h"
|
||
|
#include "return.h"
|
||
|
|
||
|
#include "equilibrium.h"
|
||
|
#include "derivative.h"
|
||
|
|
||
|
|
||
|
int frozen_performance(equilibrium_t *e, exit_condition_t exit_type,
|
||
|
double value);
|
||
|
int shifting_performance(equilibrium_t *e, exit_condition_t exit_type,
|
||
|
double value);
|
||
|
|
||
|
#endif
|
||
|
|