mirror of
https://github.com/JHUAPL/Terrasaur.git
synced 2026-01-08 22:07:58 -05:00
16 lines
418 B
C
16 lines
418 B
C
#ifndef OPIMIZEGSL_H
|
|
#define OPIMIZEGSL_H
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
/* minimizer is both the initial guess and the final returned value */
|
|
void optimizeGsl(double (*function)(const double*, void *externalParams),
|
|
void (*gradient)(const double*, double*, void *externalParams),
|
|
double* minimizer,
|
|
size_t N,
|
|
void *externalParams);
|
|
|
|
|
|
#endif // OPIMIZEGSL_H
|