| 1 | /////////////////////////////////////////////////////////////////////////////////
 | 
|---|
| 2 | // 
 | 
|---|
| 3 | //  Levenberg - Marquardt non-linear minimization algorithm
 | 
|---|
| 4 | //  Copyright (C) 2004-05  Manolis Lourakis (lourakis at ics forth gr)
 | 
|---|
| 5 | //  Institute of Computer Science, Foundation for Research & Technology - Hellas
 | 
|---|
| 6 | //  Heraklion, Crete, Greece.
 | 
|---|
| 7 | //
 | 
|---|
| 8 | //  This program is free software; you can redistribute it and/or modify
 | 
|---|
| 9 | //  it under the terms of the GNU General Public License as published by
 | 
|---|
| 10 | //  the Free Software Foundation; either version 2 of the License, or
 | 
|---|
| 11 | //  (at your option) any later version.
 | 
|---|
| 12 | //
 | 
|---|
| 13 | //  This program is distributed in the hope that it will be useful,
 | 
|---|
| 14 | //  but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
|---|
| 15 | //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
|---|
| 16 | //  GNU General Public License for more details.
 | 
|---|
| 17 | //
 | 
|---|
| 18 | /////////////////////////////////////////////////////////////////////////////////
 | 
|---|
| 19 | 
 | 
|---|
| 20 | /*******************************************************************************
 | 
|---|
| 21 |  * Wrappers for linearly constrained Levenberg-Marquardt minimization. The same
 | 
|---|
| 22 |  * core code is used with appropriate #defines to derive single and double
 | 
|---|
| 23 |  * precision versions, see also lmlec_core.c
 | 
|---|
| 24 |  *******************************************************************************/
 | 
|---|
| 25 | 
 | 
|---|
| 26 | #include <stdio.h>
 | 
|---|
| 27 | #include <stdlib.h>
 | 
|---|
| 28 | #include <math.h>
 | 
|---|
| 29 | 
 | 
|---|
| 30 | #include "levmar.h"
 | 
|---|
| 31 | #include "misc.h"
 | 
|---|
| 32 | 
 | 
|---|
| 33 | 
 | 
|---|
| 34 | #ifndef HAVE_LAPACK
 | 
|---|
| 35 | 
 | 
|---|
| 36 | #ifdef _MSC_VER
 | 
|---|
| 37 | #pragma message("Linearly constrained optimization requires LAPACK and was not compiled!")
 | 
|---|
| 38 | #else
 | 
|---|
| 39 | #warning Linearly constrained optimization requires LAPACK and was not compiled!
 | 
|---|
| 40 | #endif // _MSC_VER
 | 
|---|
| 41 | 
 | 
|---|
| 42 | #else // LAPACK present
 | 
|---|
| 43 | 
 | 
|---|
| 44 | #if !defined(LM_DBL_PREC) && !defined(LM_SNGL_PREC)
 | 
|---|
| 45 | #error At least one of LM_DBL_PREC, LM_SNGL_PREC should be defined!
 | 
|---|
| 46 | #endif
 | 
|---|
| 47 | 
 | 
|---|
| 48 | 
 | 
|---|
| 49 | #ifdef LM_SNGL_PREC
 | 
|---|
| 50 | /* single precision (float) definitions */
 | 
|---|
| 51 | #define LM_REAL float
 | 
|---|
| 52 | #define LM_PREFIX s
 | 
|---|
| 53 | 
 | 
|---|
| 54 | #define __SUBCNST(x) x##F
 | 
|---|
| 55 | #define LM_CNST(x) __SUBCNST(x) // force substitution
 | 
|---|
| 56 | 
 | 
|---|
| 57 | #include "lmlec_core.c" // read in core code
 | 
|---|
| 58 | 
 | 
|---|
| 59 | #undef LM_REAL
 | 
|---|
| 60 | #undef LM_PREFIX
 | 
|---|
| 61 | #undef __SUBCNST
 | 
|---|
| 62 | #undef LM_CNST
 | 
|---|
| 63 | #endif /* LM_SNGL_PREC */
 | 
|---|
| 64 | 
 | 
|---|
| 65 | #ifdef LM_DBL_PREC
 | 
|---|
| 66 | /* double precision definitions */
 | 
|---|
| 67 | #define LM_REAL double
 | 
|---|
| 68 | #define LM_PREFIX d
 | 
|---|
| 69 | 
 | 
|---|
| 70 | #define LM_CNST(x) (x)
 | 
|---|
| 71 | 
 | 
|---|
| 72 | #include "lmlec_core.c" // read in core code
 | 
|---|
| 73 | 
 | 
|---|
| 74 | #undef LM_REAL
 | 
|---|
| 75 | #undef LM_PREFIX
 | 
|---|
| 76 | #undef LM_CNST
 | 
|---|
| 77 | #endif /* LM_DBL_PREC */
 | 
|---|
| 78 | 
 | 
|---|
| 79 | #endif /* HAVE_LAPACK */
 | 
|---|
| 80 | 
 | 
|---|