mirror of
https://github.com/nasa/trick.git
synced 2025-01-10 15:02:58 +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
|