File indexing completed on 2025-01-18 10:10:25
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef ROOT_Minuit2_NegativeG2LineSearch
0011 #define ROOT_Minuit2_NegativeG2LineSearch
0012
0013 namespace ROOT {
0014
0015 namespace Minuit2 {
0016
0017 class MnFcn;
0018 class MinimumState;
0019 class GradientCalculator;
0020 class MnMachinePrecision;
0021 class FunctionGradient;
0022
0023
0024
0025
0026
0027
0028
0029 class NegativeG2LineSearch {
0030
0031 public:
0032 NegativeG2LineSearch() {}
0033
0034 ~NegativeG2LineSearch() {}
0035
0036 MinimumState
0037 operator()(const MnFcn &, const MinimumState &, const GradientCalculator &, const MnMachinePrecision &) const;
0038
0039 bool HasNegativeG2(const FunctionGradient &, const MnMachinePrecision &) const;
0040
0041 private:
0042 };
0043
0044 }
0045
0046 }
0047
0048 #endif