Added a root finder class. This class solves single equation solvers.
It's actually, vcs_rootfd1D.cpp, however, putting it up here rather than in the equil directory makes more sense.
This commit is contained in:
parent
fae826750f
commit
1644b1c3fe
3 changed files with 575 additions and 2 deletions
|
|
@ -35,14 +35,14 @@ CXX_FLAGS = @CXXFLAGS@ $(LOCAL_DEFS) $(CXX_OPT) $(PIC_FLAG) $(DEBUG_FLAG)
|
|||
NUMERICS_OBJ = DenseMatrix.o funcs.o Func1.o \
|
||||
ODE_integrators.o BandMatrix.o DAE_solvers.o \
|
||||
funcs.o sort.o SquareMatrix.o ResidJacEval.o NonlinearSolver.o \
|
||||
solveProb.o BEulerInt.o
|
||||
solveProb.o BEulerInt.o RootFind.o
|
||||
|
||||
NUMERICS_H = ArrayViewer.h DenseMatrix.h \
|
||||
funcs.h ctlapack.h Func1.h FuncEval.h \
|
||||
polyfit.h\
|
||||
BandMatrix.h Integrator.h DAE_Solver.h ResidEval.h sort.h \
|
||||
SquareMatrix.h ResidJacEval.h NonlinearSolver.h \
|
||||
solveProb.h BEulerInt.h
|
||||
solveProb.h BEulerInt.h rootFind.h
|
||||
|
||||
ifeq ($(use_sundials), 1)
|
||||
ODEPACKAGE_H = CVodesIntegrator.h
|
||||
|
|
|
|||
502
Cantera/src/numerics/RootFind.cpp
Normal file
502
Cantera/src/numerics/RootFind.cpp
Normal file
|
|
@ -0,0 +1,502 @@
|
|||
/*
|
||||
* @file: RootFind.cpp root finder for 1D problems
|
||||
*/
|
||||
/*
|
||||
* $Id: solveSP.cpp 381 2010-01-15 21:20:41Z hkmoffa $
|
||||
*/
|
||||
/*
|
||||
* Copywrite 2004 Sandia Corporation. Under the terms of Contract
|
||||
* DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government
|
||||
* retains certain rights in this software.
|
||||
* See file License.txt for licensing information.
|
||||
*/
|
||||
|
||||
#include "ct_defs.h"
|
||||
#include "RootFind.h"
|
||||
|
||||
#include "global.h"
|
||||
|
||||
/* Standard include files */
|
||||
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
#include <cmath>
|
||||
|
||||
#include <vector>
|
||||
|
||||
using namespace std;
|
||||
namespace Cantera {
|
||||
|
||||
|
||||
|
||||
#ifndef MAX
|
||||
# define MAX(x,y) (( (x) > (y) ) ? (x) : (y)) /* max function */
|
||||
#endif
|
||||
|
||||
#ifndef MIN
|
||||
# define MIN(x,y) (( (x) < (y) ) ? (x) : (y)) /* min function */
|
||||
#endif
|
||||
|
||||
#ifndef SQUARE
|
||||
# define SQUARE(x) ( (x) * (x) )
|
||||
#endif
|
||||
|
||||
#ifndef DSIGN
|
||||
#define DSIGN(x) (( (x) == (0.0) ) ? (0.0) : ( ((x) > 0.0) ? 1.0 : -1.0 ))
|
||||
#endif
|
||||
|
||||
/*****************************************************************************/
|
||||
/*****************************************************************************/
|
||||
/*****************************************************************************/
|
||||
#ifdef DEBUG_MODE
|
||||
static void print_funcEval(FILE *fp, double xval, double fval, int its)
|
||||
{
|
||||
fprintf(fp,"\n");
|
||||
fprintf(fp,"...............................................................\n");
|
||||
fprintf(fp,".................. RootFind Function Evaluation ...............\n");
|
||||
fprintf(fp,".................. iteration = %5d ........................\n", its);
|
||||
fprintf(fp,".................. value = %12.5g ......................\n", xval);
|
||||
fprintf(fp,".................. funct = %12.5g ......................\n", fval);
|
||||
fprintf(fp,"...............................................................\n");
|
||||
fprintf(fp,"\n");
|
||||
}
|
||||
#endif
|
||||
//================================================================================================
|
||||
static int smlequ(double *c, int idem, int n, double *b, int m) {
|
||||
int i, j, k, l;
|
||||
double R;
|
||||
if (n > idem || n <= 0) {
|
||||
writelogf("smlequ ERROR: badly dimensioned matrix: %d %d\n", n, idem);
|
||||
return 1;
|
||||
}
|
||||
|
||||
/*
|
||||
* Loop over the rows
|
||||
* -> At the end of each loop, the only nonzero entry in the column
|
||||
* will be on the diagonal. We can therfore just invert the
|
||||
* diagonal at the end of the program to solve the equation system.
|
||||
*/
|
||||
for (i = 0; i < n; ++i) {
|
||||
if (c[i + i * idem] == 0.0) {
|
||||
/*
|
||||
* Do a simple form of row pivoting to find a non-zero pivot
|
||||
*/
|
||||
for (k = i + 1; k < n; ++k) {
|
||||
if (c[k + i * idem] != 0.0) goto FOUND_PIVOT;
|
||||
}
|
||||
writelogf("smlequ ERROR: Encountered a zero column: %d\n", i);
|
||||
return 1;
|
||||
FOUND_PIVOT: ;
|
||||
for (j = 0; j < n; ++j) c[i + j * idem] += c[k + j * idem];
|
||||
for (j = 0; j < m; ++j) b[i + j * idem] += b[k + j * idem];
|
||||
}
|
||||
|
||||
for (l = 0; l < n; ++l) {
|
||||
if (l != i && c[l + i * idem] != 0.0) {
|
||||
R = c[l + i * idem] / c[i + i * idem];
|
||||
c[l + i * idem] = 0.0;
|
||||
for (j = i+1; j < n; ++j) c[l + j * idem] -= c[i + j * idem] * R;
|
||||
for (j = 0; j < m; ++j) b[l + j * idem] -= b[i + j * idem] * R;
|
||||
}
|
||||
}
|
||||
}
|
||||
/*
|
||||
* The negative in the last expression is due to the form of B upon
|
||||
* input
|
||||
*/
|
||||
for (i = 0; i < n; ++i) {
|
||||
for (j = 0; j < m; ++j) {
|
||||
b[i + j * idem] = -b[i + j * idem] / c[i + i*idem];
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
//================================================================================================
|
||||
// Main constructor
|
||||
RootFind::RootFind (ResidEval* resid) :
|
||||
m_residFunc(resid),
|
||||
m_funcTargetValue(0.0),
|
||||
m_atol(1.0E-11),
|
||||
m_rtol(1.0E-5),
|
||||
m_maxstep(1000),
|
||||
printLvl(9)
|
||||
{
|
||||
|
||||
}
|
||||
//================================================================================================
|
||||
// Empty destructor
|
||||
RootFind::~RootFind() {
|
||||
}
|
||||
//================================================================================================
|
||||
/*
|
||||
* The following calculation is a Newton's method to
|
||||
* get the surface fractions of the surface and bulk species by
|
||||
* requiring that the
|
||||
* surface species production rate = 0 and that the bulk fractions are
|
||||
* proportional to their production rates.
|
||||
*/
|
||||
int RootFind::solve(double xmin, double xmax, int itmax, double funcTargetValue, double *xbest) {
|
||||
|
||||
m_funcTargetValue = funcTargetValue;
|
||||
static int callNum = 0;
|
||||
const char *stre = "RootFind ERROR: ";
|
||||
const char *strw = "RootFind WARNING: ";
|
||||
int converged = 0;
|
||||
#ifdef DEBUG_MODE
|
||||
char fileName[80];
|
||||
FILE *fp = 0;
|
||||
#endif
|
||||
double x1, x2, xnew, f1, f2, fnew, slope;
|
||||
int its = 0;
|
||||
int posStraddle = 0;
|
||||
int retn = 0;
|
||||
int foundPosF = 0;
|
||||
int foundNegF = 0;
|
||||
int foundStraddle = 0;
|
||||
double xPosF = 0.0;
|
||||
double xNegF = 0.0;
|
||||
double fnorm; /* A valid norm for the making the function value
|
||||
* dimensionless */
|
||||
double c[9], f[3], xn1, xn2, x0 = 0.0, f0 = 0.0, root, theta, xquad;
|
||||
|
||||
callNum++;
|
||||
#ifdef DEBUG_MODE
|
||||
if (printLvl >= 3) {
|
||||
sprintf(fileName, "RootFind_%d.log", callNum);
|
||||
fp = fopen(fileName, "w");
|
||||
fprintf(fp, " Iter TP_its xval Func_val | Reasoning\n");
|
||||
fprintf(fp, "-----------------------------------------------------"
|
||||
"-------------------------------\n");
|
||||
}
|
||||
#else
|
||||
if (printLvl >= 3) {
|
||||
writelog("WARNING: RootFind: printlvl >= 3, but debug mode not turned on\n");
|
||||
}
|
||||
#endif
|
||||
if (xmax <= xmin) {
|
||||
writelogf("%sxmin and xmax are bad: %g %g\n", stre, xmin, xmax);
|
||||
return ROOTFIND_BADINPUT;
|
||||
}
|
||||
x1 = *xbest;
|
||||
if (x1 < xmin || x1 > xmax) {
|
||||
x1 = (xmin + xmax) / 2.0;
|
||||
}
|
||||
|
||||
f1 = func(x1);
|
||||
|
||||
#ifdef DEBUG_MODE
|
||||
if (printLvl >= 3) {
|
||||
print_funcEval(fp, x1, f1, its);
|
||||
fprintf(fp, "%-5d %-5d %-15.5E %-15.5E\n", -2, 0, x1, f1);
|
||||
}
|
||||
#endif
|
||||
|
||||
if (f1 == 0.0) {
|
||||
*xbest = x1;
|
||||
return 0;
|
||||
} else if (f1 > 0.0) {
|
||||
foundPosF = 1;
|
||||
xPosF = x1;
|
||||
} else {
|
||||
foundNegF = 1;
|
||||
xNegF = x1;
|
||||
}
|
||||
|
||||
x2 = x1 * 1.1;
|
||||
if (x2 > xmax) {
|
||||
x2 = x1 - (xmax - xmin) / 100.;
|
||||
}
|
||||
f2 = func(x2);
|
||||
|
||||
#ifdef DEBUG_MODE
|
||||
if (printLvl >= 3) {
|
||||
print_funcEval(fp, x2, f2, its);
|
||||
fprintf(fp, "%-5d %-5d %-15.5E %-15.5E", -1, 0, x2, f2);
|
||||
}
|
||||
#endif
|
||||
|
||||
if (m_funcTargetValue != 0.0) {
|
||||
fnorm = 1.0E-6 + m_atol / m_rtol;
|
||||
} else {
|
||||
fnorm = 0.5*(fabs(f1) + fabs(f2)) + fabs(m_funcTargetValue);
|
||||
}
|
||||
|
||||
if (f2 == 0.0)
|
||||
return retn;
|
||||
else if (f2 > 0.0) {
|
||||
if (!foundPosF) {
|
||||
foundPosF = 1;
|
||||
xPosF = x2;
|
||||
}
|
||||
} else {
|
||||
if (!foundNegF) {
|
||||
foundNegF = 1;
|
||||
xNegF = x2;
|
||||
}
|
||||
}
|
||||
foundStraddle = foundPosF && foundNegF;
|
||||
if (foundStraddle) {
|
||||
if (xPosF > xNegF) posStraddle = 1;
|
||||
else posStraddle = 0 ;
|
||||
}
|
||||
|
||||
do {
|
||||
/*
|
||||
* Find an estimate of the next point to try based on
|
||||
* a linear approximation.
|
||||
*/
|
||||
slope = (f2 - f1) / (x2 - x1);
|
||||
if (slope == 0.0) {
|
||||
writelogf("%s functions evals produced the same result, %g, at %g and %g\n",
|
||||
strw, f2, x1, x2);
|
||||
xnew = 2*x2 - x1 + 1.0E-3;
|
||||
} else {
|
||||
xnew = x2 - f2 / slope;
|
||||
}
|
||||
#ifdef DEBUG_MODE
|
||||
if (printLvl >= 3) {
|
||||
fprintf(fp, " | xlin = %-9.4g", xnew);
|
||||
}
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Do a quadratic fit -> Note this algorithm seems
|
||||
* to work OK. The quadratic approximation doesn't kick in until
|
||||
* the end of the run, when it becomes reliable.
|
||||
*/
|
||||
if (its > 0) {
|
||||
c[0] = 1.; c[1] = 1.; c[2] = 1.;
|
||||
c[3] = x0; c[4] = x1; c[5] = x2;
|
||||
c[6] = SQUARE(x0); c[7] = SQUARE(x1); c[8] = SQUARE(x2);
|
||||
f[0] = - f0; f[1] = - f1; f[2] = - f2;
|
||||
retn = smlequ(c, 3, 3, f, 1);
|
||||
if (retn == 1) goto QUAD_BAIL;
|
||||
root = f[1]* f[1] - 4.0 * f[0] * f[2];
|
||||
if (root >= 0.0) {
|
||||
xn1 = (- f[1] + sqrt(root)) / (2.0 * f[2]);
|
||||
xn2 = (- f[1] - sqrt(root)) / (2.0 * f[2]);
|
||||
if (fabs(xn2 - x2) < fabs(xn1 - x2) && xn2 > 0.0 ) xquad = xn2;
|
||||
else xquad = xn1;
|
||||
theta = fabs(xquad - xnew) / fabs(xnew - x2);
|
||||
theta = MIN(1.0, theta);
|
||||
xnew = theta * xnew + (1.0 - theta) * xquad;
|
||||
#ifdef DEBUG_MODE
|
||||
if (printLvl >= 3) {
|
||||
if (theta != 1.0) {
|
||||
fprintf(fp, " | xquad = %-9.4g", xnew);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
} else {
|
||||
/*
|
||||
* Pick out situations where the convergence may be
|
||||
* accelerated.
|
||||
*/
|
||||
if ((DSIGN(xnew - x2) == DSIGN(x2 - x1)) &&
|
||||
(DSIGN(x2 - x1) == DSIGN(x1 - x0)) ) {
|
||||
xnew += xnew - x2;
|
||||
#ifdef DEBUG_MODE
|
||||
if (printLvl >= 3) {
|
||||
fprintf(fp, " | xquada = %-9.4g", xnew);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
QUAD_BAIL: ;
|
||||
|
||||
|
||||
/*
|
||||
*
|
||||
* Put heuristic bounds on the step jump
|
||||
*/
|
||||
if ( (xnew > x1 && xnew < x2) || (xnew < x1 && xnew > x2)) {
|
||||
/*
|
||||
*
|
||||
* If we are doing a jump inbetween two points, make sure
|
||||
* the new trial is between 10% and 90% of the distance
|
||||
* between the old points.
|
||||
*/
|
||||
slope = fabs(x2 - x1) / 10.;
|
||||
if (fabs(xnew - x1) < slope) {
|
||||
xnew = x1 + DSIGN(xnew-x1) * slope;
|
||||
#ifdef DEBUG_MODE
|
||||
if (printLvl >= 3) {
|
||||
fprintf(fp, " | x10%% = %-9.4g", xnew);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
if (fabs(xnew - x2) < slope) {
|
||||
xnew = x2 + DSIGN(xnew-x2) * slope;
|
||||
#ifdef DEBUG_MODE
|
||||
if (printLvl >= 3) {
|
||||
fprintf(fp, " | x10%% = %-9.4g", xnew);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
} else {
|
||||
/*
|
||||
* If we are venturing into new ground, only allow the step jump
|
||||
* to increase by 100% at each interation
|
||||
*/
|
||||
slope = 2.0 * fabs(x2 - x1);
|
||||
if (fabs(slope) < fabs(xnew - x2)) {
|
||||
xnew = x2 + DSIGN(xnew-x2) * slope;
|
||||
#ifdef DEBUG_MODE
|
||||
if (printLvl >= 3) {
|
||||
fprintf(fp, " | xlimitsize = %-9.4g", xnew);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (xnew > xmax) {
|
||||
xnew = x2 + (xmax - x2) / 2.0;
|
||||
#ifdef DEBUG_MODE
|
||||
if (printLvl >= 3) {
|
||||
fprintf(fp, " | xlimitmax = %-9.4g", xnew);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
if (xnew < xmin) {
|
||||
xnew = x2 + (x2 - xmin) / 2.0;
|
||||
#ifdef DEBUG_MODE
|
||||
if (printLvl >= 3) {
|
||||
fprintf(fp, " | xlimitmin = %-9.4g", xnew);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
if (foundStraddle) {
|
||||
#ifdef DEBUG_MODE
|
||||
slope = xnew;
|
||||
#endif
|
||||
if (posStraddle) {
|
||||
if (f2 > 0.0) {
|
||||
if (xnew > x2) xnew = (xNegF + x2)/2;
|
||||
if (xnew < xNegF) xnew = (xNegF + x2)/2;
|
||||
} else {
|
||||
if (xnew < x2) xnew = (xPosF + x2)/2;
|
||||
if (xnew > xPosF) xnew = (xPosF + x2)/2;
|
||||
}
|
||||
} else {
|
||||
if (f2 > 0.0) {
|
||||
if (xnew < x2) xnew = (xNegF + x2)/2;
|
||||
if (xnew > xNegF) xnew = (xNegF + x2)/2;
|
||||
} else {
|
||||
if (xnew > x2) xnew = (xPosF + x2)/2;
|
||||
if (xnew < xPosF) xnew = (xPosF + x2)/2;
|
||||
}
|
||||
}
|
||||
#ifdef DEBUG_MODE
|
||||
if (printLvl >= 3) {
|
||||
if (slope != xnew) {
|
||||
fprintf(fp, " | xstraddle = %-9.4g", xnew);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
fnew = func(xnew);
|
||||
#ifdef DEBUG_MODE
|
||||
if (printLvl >= 3) {
|
||||
fprintf(fp,"\n");
|
||||
print_funcEval(fp, xnew, fnew, its);
|
||||
fprintf(fp, "%-5d %-5d %-15.5E %-15.5E", its, 0, xnew, fnew);
|
||||
}
|
||||
#endif
|
||||
|
||||
if (foundStraddle) {
|
||||
if (posStraddle) {
|
||||
if (fnew > 0.0) {
|
||||
if (xnew < xPosF) xPosF = xnew;
|
||||
} else {
|
||||
if (xnew > xNegF) xNegF = xnew;
|
||||
}
|
||||
} else {
|
||||
if (fnew > 0.0) {
|
||||
if (xnew > xPosF) xPosF = xnew;
|
||||
} else {
|
||||
if (xnew < xNegF) xNegF = xnew;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (! foundStraddle) {
|
||||
if (fnew > 0.0) {
|
||||
if (!foundPosF) {
|
||||
foundPosF = 1;
|
||||
xPosF = xnew;
|
||||
foundStraddle = 1;
|
||||
if (xPosF > xNegF) posStraddle = 1;
|
||||
else posStraddle = 0 ;
|
||||
}
|
||||
} else {
|
||||
if (!foundNegF) {
|
||||
foundNegF = 1;
|
||||
xNegF = xnew;
|
||||
foundStraddle = 1;
|
||||
if (xPosF > xNegF) posStraddle = 1;
|
||||
else posStraddle = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
x0 = x1;
|
||||
f0 = f1;
|
||||
x1 = x2;
|
||||
f1 = f2;
|
||||
x2 = xnew;
|
||||
f2 = fnew;
|
||||
if (fabs(fnew / fnorm) < m_rtol) {
|
||||
converged = 1;
|
||||
}
|
||||
its++;
|
||||
} while (! converged && its < itmax);
|
||||
if (converged) {
|
||||
if (printLvl >= 1) {
|
||||
writelogf("RootFind success: convergence achieved\n");
|
||||
}
|
||||
#ifdef DEBUG_MODE
|
||||
if (printLvl >= 3) {
|
||||
fprintf(fp, " | RootFind success in %d its, fnorm = %g\n", its, fnorm);
|
||||
}
|
||||
#endif
|
||||
} else {
|
||||
retn = ROOTFIND_FAILEDCONVERGENCE;
|
||||
if (printLvl >= 1) {
|
||||
writelogf("RootFind ERROR: maximum iterations exceeded without convergence\n");
|
||||
}
|
||||
#ifdef DEBUG_MODE
|
||||
if (printLvl >= 3) {
|
||||
fprintf(fp, "\nRootFind failure in %d its\n", its);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
*xbest = x2;
|
||||
#ifdef DEBUG_MODE
|
||||
if (printLvl >= 3) {
|
||||
fclose(fp);
|
||||
}
|
||||
#endif
|
||||
return retn;
|
||||
}
|
||||
//================================================================================================
|
||||
double RootFind::func(double x) {
|
||||
double r;
|
||||
m_residFunc->evalSS(0.0, &x, &r);
|
||||
return (r - m_funcTargetValue);
|
||||
}
|
||||
//================================================================================================
|
||||
void RootFind::setTol(double rtol, double atol)
|
||||
{
|
||||
m_atol = atol;
|
||||
m_rtol = rtol;
|
||||
}
|
||||
//================================================================================================
|
||||
void RootFind::setPrintLvl(int printlvl)
|
||||
{
|
||||
printLvl = printlvl;
|
||||
}
|
||||
//================================================================================================
|
||||
}
|
||||
71
Cantera/src/numerics/RootFind.h
Normal file
71
Cantera/src/numerics/RootFind.h
Normal file
|
|
@ -0,0 +1,71 @@
|
|||
/**
|
||||
* @file RootFind.h
|
||||
* Header file for implicit nonlinear solver of a one dimensional function
|
||||
* (see \ref numerics and class \link Cantera::RootFind RootFind\endlink).
|
||||
*/
|
||||
/*
|
||||
* $Id: solveSP.h 381 2010-01-15 21:20:41Z hkmoffa $
|
||||
*/
|
||||
/*
|
||||
* Copywrite 2004 Sandia Corporation. Under the terms of Contract
|
||||
* DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government
|
||||
* retains certain rights in this software.
|
||||
* See file License.txt for licensing information.
|
||||
*/
|
||||
|
||||
#ifndef ROOTFIND_H
|
||||
#define ROOTFIND_H
|
||||
/**
|
||||
* @defgroup solverGroup Solvers for Equation Systems
|
||||
*/
|
||||
|
||||
#include <vector>
|
||||
#include "ResidEval.h"
|
||||
|
||||
namespace Cantera {
|
||||
|
||||
#define ROOTFIND_SUCCESS 0
|
||||
#define ROOTFIND_FAILEDCONVERGENCE -1
|
||||
#define ROOTFIND_BADINPUT -2
|
||||
|
||||
class RootFind {
|
||||
|
||||
public:
|
||||
|
||||
//! Constructor for the object
|
||||
/*!
|
||||
*/
|
||||
RootFind(ResidEval* resid);
|
||||
|
||||
//! Destructor. Deletes the integrator.
|
||||
~RootFind();
|
||||
|
||||
private:
|
||||
|
||||
//! Unimplemented private copy constructor
|
||||
RootFind(const RootFind &right);
|
||||
|
||||
//! Unimplemented private assignment operator
|
||||
RootFind& operator=(const RootFind &right);
|
||||
|
||||
public:
|
||||
|
||||
int solve(double xmin, double xmax, int itmax, double funcTargetValue, double *xbest) ;
|
||||
|
||||
double func(double x) ;
|
||||
|
||||
void setTol(double rtol, double atol);
|
||||
|
||||
void setPrintLvl(int printLvl) ;
|
||||
|
||||
public:
|
||||
ResidEval *m_residFunc;
|
||||
double m_funcTargetValue;
|
||||
double m_atol;
|
||||
double m_rtol;
|
||||
double m_maxstep;
|
||||
int printLvl;
|
||||
|
||||
};
|
||||
}
|
||||
#endif
|
||||
Loading…
Add table
Reference in a new issue