Closed agarny closed 1 year ago
The external nlaSolve() method currently has the following signature:
nlaSolve()
extern void nlaSolve(void (*objectiveFunction)(double *, double *, void *), double *u, int n, void *data);
However, rather than using int, we really ought to use size_t as we already do in createVariablesArray() for instance.
int
size_t
createVariablesArray()
The external
nlaSolve()
method currently has the following signature:However, rather than using
int
, we really ought to usesize_t
as we already do increateVariablesArray()
for instance.