trick/trick_models/cannon/optim/include/optim_proto.h

22 lines
399 B
C
Raw Normal View History

2015-02-26 15:02:31 +00:00
/*
* Vetter's implementation of the Nelder-Mead "amoeba" algorithm.
* Was made strictly for Trick tutorial. Was a whim.
* Reference for algorithm (not code):
* http://www.research.ibm.com/infoecon/paps/html/amec99_bundle/node8.html
*/
#ifndef __optim_proto__
#define __optim_proto__
#ifdef __cplusplus
extern "C" {
#endif
int cannon_master_shutdown();
#ifdef __cplusplus
}
#endif
#endif