mirror of
https://github.com/nasa/trick.git
synced 2025-01-09 06:22:42 +00:00
22 lines
399 B
C
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
|