trick/trick_models/cannon/optim/include/optim_proto.h
2015-02-26 09:02:31 -06:00

22 lines
399 B
C

/*
* 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