diff --git a/lib/lmmin.c b/lib/lmmin.c index 40944b51ebd4163eb7eec968053f8cb9623e3fdd..a75f858e85be534b17c1aeadef6c11d1ae361698 100644 --- a/lib/lmmin.c +++ b/lib/lmmin.c @@ -68,10 +68,10 @@ void lm_qrsolv( LM_USER_TOL 1.e-14 */ -LM_DLL const lm_control_struct lm_control_double = { +const lm_control_struct lm_control_double = { LM_USERTOL, LM_USERTOL, LM_USERTOL, LM_USERTOL, 100., 100, 1, NULL, 0, -1, -1 }; -LM_DLL const lm_control_struct lm_control_float = { +const lm_control_struct lm_control_float = { 1.e-7, 1.e-7, 1.e-7, 1.e-7, 100., 100, 1, NULL, 0, -1, -1 }; @@ -80,7 +80,7 @@ LM_DLL const lm_control_struct lm_control_float = { /* Message texts (indexed by status.info) */ /*****************************************************************************/ -LM_DLL const char *lm_infmsg[] = { +const char *lm_infmsg[] = { "found zero (sum of squares below underflow limit)", "converged (the relative error in the sum of squares is at most tol)", "converged (the relative error of the parameter vector is at most tol)", @@ -97,7 +97,7 @@ LM_DLL const char *lm_infmsg[] = { "won't fit (no free parameter)" }; -LM_DLL const char *lm_shortmsg[] = { +const char *lm_shortmsg[] = { "found zero", // 0 "converged (f)", // 1 "converged (p)", // 2