71 double edm = seed.
State().Edm();
76 print.
Warn(
"No free parameters.");
81 print.
Error(
"Minimum seed invalid.");
86 print.
Error(
"Initial matrix not pos.def.");
92 std::vector<MinimumState>
result;
96 print.
Info(
"Start iterating until Edm is <",
edmval,
"with call limit =",
maxfcn);
112 print.
Debug(
ipass > 0 ?
"Continue" :
"Start",
"iterating...");
117 if (min.HasReachedCallLimit()) {
118 print.
Warn(
"FunctionMinimum is invalid, reached function call limit");
124 if (!min.IsValid()) {
125 print.
Warn(
"FunctionMinimum is invalid after second try");
131 edm =
result.back().Edm();
134 if ((
strategy.Strategy() >= 2) || (
strategy.Strategy() == 1 && min.Error().Dcovar() > 0.05)) {
136 print.
Debug(
"MnMigrad will verify convergence and Error matrix; dcov =", min.Error().Dcovar());
139 strat.SetHessianForcePosDef(1);
142 print.
Info(
"After Hessian");
147 print.
Warn(
"Invalid Hessian - exit the minimization");
162 print.
Info(
"Tolerance not sufficient, continue minimization; "
166 print.
Warn(
"Reached machine accuracy limit; Edm", edm,
"is smaller than machine limit",
machineLimit,
167 "while",
edmval,
"was requested");
189 print.
Warn(
"No convergence; Edm", edm,
"is above tolerance", 10 *
edmval);
190 }
else if (
latest.Error().HasReachedCallLimit()) {
193 }
else if (
latest.Error().IsAvailable()) {
195 if (min.IsAboveMaxEdm())
196 print.
Info(
"Edm has been re-computed after Hesse; Edm", edm,
"is now within tolerance");
200 print.
Debug(
"Minimum found", min);
241 step = -1. *
s0.Error().InvHessian() *
s0.Gradient().Vec();
243 print.
Debug(
"Iteration",
result.size(),
"Fval",
s0.Fval(),
"numOfCall",
fcn.NumOfCalls(),
244 "\n Internal parameters",
s0.Vec(),
"\n Newton step", step);
248 print.
Debug(
"all derivatives are zero - return current status");
256 print.
Warn(
"Matrix not pos.def, gdel =",
gdel,
"> 0");
260 step = -1. *
s0.Error().InvHessian() *
s0.Gradient().Vec();
279 if (std::fabs(pp.
Y() -
s0.Fval()) <= std::fabs(
s0.Fval()) *
prec.Eps()) {
281 print.
Warn(
"No improvement in line search");
294 print.
Debug(
"Result after line search :",
"\n x =", pp.
X(),
"\n Old Fval =",
s0.Fval(),
295 "\n New Fval =", pp.
Y(),
"\n NFcalls =",
fcn.NumOfCalls());
303 if (std::isnan(edm)) {
304 print.
Warn(
"Edm is NaN; stop iterations");
310 print.
Warn(
"Matrix not pos.def., try to make pos.def.");
316 print.
Warn(
"Matrix still not pos.def.; stop iterations");
326 print.
Debug(
"Updated new point:",
"\n Parameter:",
p.Vec(),
"\n Gradient:",
g.Vec(),
327 "\n InvHessian:",
e.Matrix(),
"\n Edm:", edm);
338 edm *= (1. + 3. *
e.Dcovar());
340 print.
Debug(
"Dcovar =",
e.Dcovar(),
"\tCorrected edm =", edm);
348 if (!
result.back().IsValid())
352 print.
Warn(
"Call limit exceeded");
358 print.
Info(
"Edm is close to limit - return current minimum");
360 }
else if (edm < std::fabs(
prec.Eps2() *
result.back().Fval())) {
361 print.
Warn(
"Edm is limited by Machine accuracy - return current minimum");
364 print.
Warn(
"Iterations finish without convergence; Edm", edm,
"Requested",
edmval);
371 print.
Debug(
"Exiting successfully;",
"Ncalls",
fcn.NumOfCalls(),
"FCN",
result.back().Fval(),
"Edm", edm,
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
winID h TVirtualViewer3D TVirtualGLPainter p
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t result
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void gc
class holding the full result of the minimization; both internal and external (MnUserParameterState) ...
interface class for gradient calculators
void TraceIteration(int iter, const MinimumState &state) const
MinimumError keeps the inv.
const MinimumParameters & Parameters() const
const MnMachinePrecision & Precision() const
const MinimumState & State() const
MinimumState keeps the information (position, Gradient, 2nd deriv, etc) after one minimization step (...
Wrapper class to FCNBase interface used internally by Minuit.
API class for calculating the numerical covariance matrix (== 2x Inverse Hessian == 2x Inverse 2nd de...
Implements a 1-dimensional minimization along a given direction (i.e.
Sets the relative floating point (double) arithmetic precision.
double Y() const
Accessor to the y (second) coordinate.
double X() const
Accessor to the x (first) coordinate.
Force the covariance matrix to be positive defined by adding extra terms in the diagonal.
void Debug(const Ts &... args)
void Error(const Ts &... args)
void Info(const Ts &... args)
void Warn(const Ts &... args)
API class for defining four levels of strategies: low (0), medium (1), high (2), very high (>=3); act...
void AddResult(std::vector< MinimumState > &result, const MinimumState &state) const
FunctionMinimum Minimum(const MnFcn &, const GradientCalculator &, const MinimumSeed &, const MnStrategy &, unsigned int, double) const override
const VariableMetricEDMEstimator & Estimator() const
const MinimumErrorUpdator & ErrorUpdator() const
int iterate(rng_state_t *X)
double inner_product(const LAVector &, const LAVector &)
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...