BSMPT 3.0.7
BSMPT - Beyond the Standard Model Phase Transitions : A C++ package for the computation of the EWPT in BSM models
Loading...
Searching...
No Matches
MinimizeNLOPT.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2021 Philipp Basler, Margarete Mühlleitner and Jonas
2// Müller
3//
4// SPDX-License-Identifier: GPL-3.0-or-later
5
6#ifndef MINIMIZENLOPT_H
7#define MINIMIZENLOPT_H
8
9#include <memory>
10#include <nlopt.hpp>
11#include <vector>
12
17namespace BSMPT
18{
19class Class_Potential_Origin;
20namespace Minimizer
21{
22struct PointerContainerMinPlane;
23namespace LibNLOPT
24{
25
31{
32 const Class_Potential_Origin &model;
33 double Temp;
35 const double &TempIn)
36 : model{modelIn}
37 , Temp{TempIn}
38 {
39 }
40};
41
46{
47 std::vector<double> Minimum;
48 double PotVal;
49 nlopt::result NLOPTResult;
50 bool Success;
52 : NLOPTReturnType(std::vector<double>(), 0, nlopt::result(), false)
53 {
54 }
55 NLOPTReturnType(const std::vector<double> &MinimumIn,
56 const double &PotValIn,
57 const nlopt::result &NLOPTResultIn,
58 bool SuccessIn)
59 : Minimum{MinimumIn}
60 , PotVal{PotValIn}
61 , NLOPTResult{NLOPTResultIn}
62 , Success{SuccessIn}
63 {
64 }
65};
66
74double
75NLOPTVEff(const std::vector<double> &x, std::vector<double> &grad, void *data);
76
86 const double &Temp);
87
104double NLOPTVEffPlane(const std::vector<double> &x,
105 std::vector<double> &grad,
106 void *data);
107
116FindLocalMinimum(const std::shared_ptr<Class_Potential_Origin> &model,
117 const std::vector<double> &Start,
118 const double &Temp);
119
120} // namespace LibNLOPT
121} // namespace Minimizer
122} // namespace BSMPT
123
124#endif // MINIMIZENLOPT_H
double NLOPTVEff(const std::vector< double > &x, std::vector< double > &grad, void *data)
NLOPTVEff.
Definition MinimizeNLOPT.cpp:23
NLOPTReturnType MinimizePlaneUsingNLOPT(const struct PointerContainerMinPlane &params)
MinimizePlaneUsingNLOPT minimizes the effective potential in a given plane using the NLopt LN_COBYLA ...
Definition MinimizeNLOPT.cpp:91
double NLOPTVEffPlane(const std::vector< double > &x, std::vector< double > &grad, void *data)
NLOPTVEffPlane.
Definition MinimizeNLOPT.cpp:78
NLOPTReturnType FindLocalMinimum(const std::shared_ptr< Class_Potential_Origin > &model, const std::vector< double > &Start, const double &Temp)
FindLocalMinimum finds the local minimum near the starting point.
Definition MinimizeNLOPT.cpp:143
NLOPTReturnType MinimizeUsingNLOPT(const Class_Potential_Origin &model, const double &Temp)
MinimizeUsingNLOPT minimizes the effective potential using the NLopt LN_COBYLA algorithm.
Definition MinimizeNLOPT.cpp:31
The Class_Potential_Origin class Base class for all models. This class contains all numerical calcula...
Definition ClassPotentialOrigin.h:57
This classes calculates the Bounce action of the potential with a set temperature.
Definition CalculateEtaInterface.h:24
The NLOPTReturnType struct which is returned by the minimization.
Definition MinimizeNLOPT.h:46
The ShareInformationNLOPT struct which is used to pass the model information to the NLopt minimizatio...
Definition MinimizeNLOPT.h:31
Definition MinimizePlane.h:71
struct to store minimum and temperature
Definition minimum_tracer.h:253