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
Minimizer.h
Go to the documentation of this file.
1// Copyright (C) 2018 Philipp Basler and Margarete Mühlleitner
2// SPDX-FileCopyrightText: 2021 Philipp Basler, Margarete Mühlleitner and Jonas
3// Müller
4//
5// SPDX-License-Identifier: GPL-3.0-or-later
6
11#ifndef MINIMIZER_H_
12#define MINIMIZER_H_
13
14#include <BSMPT/config.h>
16#include <memory>
17#include <thread>
18#include <vector> // for vector
19
20namespace BSMPT
21{
22class Class_Potential_Origin;
23namespace Minimizer
24{
25
26// Here you can decide the default setting for the mnimizer
27
31const bool UseGSLDefault = true;
32
36#ifdef libcmaes_FOUND
37const bool UseLibCMAESDefault = true;
38#else
39const bool UseLibCMAESDefault = false;
40#endif
41
45#ifdef NLopt_FOUND
46const bool UseNLoptDefault = true;
47#else
48const bool UseNLoptDefault = false;
49#endif
50
51const std::size_t Num_threads = std::thread::hardware_concurrency();
52
61constexpr int CalcWhichMinimizer(bool UseGSL = UseGSLDefault,
62 bool UseCMAES = UseLibCMAESDefault,
63 bool UseNLopt = UseNLoptDefault)
64{
65 return static_cast<int>(UseCMAES) + 2 * static_cast<int>(UseGSL) +
66 4 * static_cast<int>(UseNLopt);
67}
68
73{
74 bool UseCMAES{UseLibCMAESDefault};
75 bool UseGSL{UseGSLDefault};
76 bool UseNLopt{UseNLoptDefault};
77 MinimizersToUse(bool useCMAES, bool useGSL, bool useNLopt)
78 : UseCMAES{useCMAES}
79 , UseGSL{useGSL}
80 , UseNLopt{useNLopt}
81 {
82 }
83};
84
91MinimizersToUse GetMinimizers(int WhichMinimizer);
92
97
105std::vector<double>
106Minimize_gen_all(const std::shared_ptr<Class_Potential_Origin> &modelPointer,
107 const double &Temp,
108 std::vector<double> &Check,
109 const std::vector<double> &start,
110 const int &WhichMinimizer = WhichMinimizerDefault,
111 bool UseMultithreading = true);
112
117{
118 SUCCESS = 1,
119 NOTVANISHINGATFINALTEMP = -1,
120 NOTNLOSTABLE = -2,
121 NUMERICALLYUNSTABLE = -3,
122 BELOWTHRESHOLD = -4,
123 NLOVEVZEROORINF = -5
124
125};
126
145{
146 MinimizerStatus StatusFlag;
147 double vc;
148 double Tc;
149 std::vector<double> EWMinimum;
150};
151
166PTFinder_gen_all(const std::shared_ptr<Class_Potential_Origin> &modelPointer,
167 const double &TempStart,
168 const double &TempEnd,
169 const int &WhichMinimizer = WhichMinimizerDefault,
170 bool UseMultithreading = true);
171
183[[deprecated("Will call Minimize_gen_all_tree_level with GetSMConstants(). "
184 "Please use the "
185 "detailed overload "
186 "to ensure consistent SM constants through all "
187 "routines.")]] std::vector<double>
189 const std::vector<double> &par,
190 const std::vector<double> &parCT,
191 std::vector<double> &Check,
192 const std::vector<double> &start,
193 int WhichMinimizer = WhichMinimizerDefault,
194 bool UseMultithreading = true);
195
208std::vector<double>
210 const std::vector<double> &par,
211 const std::vector<double> &parCT,
212 const ISMConstants &SMConstants,
213 std::vector<double> &Check,
214 const std::vector<double> &start,
215 int WhichMinimizer = WhichMinimizerDefault,
216 bool UseMultithreading = true);
217
230std::vector<std::vector<double>>
231FindNextLocalMinima(const std::shared_ptr<Class_Potential_Origin> &model,
232 const std::vector<double> &StartingPoint,
233 const double &temperature,
234 int WhichMinimizer = WhichMinimizerDefault);
235
252std::vector<std::vector<std::pair<double, std::vector<double>>>>
254 const std::shared_ptr<Class_Potential_Origin> &model,
255 const double &StartingTemperature,
256 const double &FinalTemperature,
257 const double &StepsizeTemperature,
258 const std::vector<std::pair<double, double>> &RNGRanges,
259 const std::size_t &seed,
260 const std::size_t &NumberOfStartingPoints,
261 const int &WhichMinimizer);
262
263} // namespace Minimizer
264} // namespace BSMPT
265
266#endif /* MINIMIZER_H_ */
EWPTReturnType PTFinder_gen_all(const std::shared_ptr< Class_Potential_Origin > &modelPointer, const double &TempStart, const double &TempEnd, const int &WhichMinimizer=WhichMinimizerDefault, bool UseMultithreading=true)
Definition Minimizer.cpp:272
std::vector< std::vector< double > > FindNextLocalMinima(const std::shared_ptr< Class_Potential_Origin > &model, const std::vector< double > &StartingPoint, const double &temperature, int WhichMinimizer=WhichMinimizerDefault)
FindNextLocalMinima finds the local minima from the given starting point at the given temperature.
Definition Minimizer.cpp:447
MinimizersToUse GetMinimizers(int WhichMinimizer)
GetMinimizers returns a struct containing the bools deciding which minimizers should be used or not.
Definition Minimizer.cpp:64
std::vector< double > Minimize_gen_all_tree_level(const ModelID::ModelIDs &Model, const std::vector< double > &par, const std::vector< double > &parCT, std::vector< double > &Check, const std::vector< double > &start, int WhichMinimizer=WhichMinimizerDefault, bool UseMultithreading=true)
Minimize_gen_all_tree_level Minimizes the tree-level potential.
Definition Minimizer.cpp:408
const bool UseNLoptDefault
UseNLoptDefault Use the NLopt minimizer in the default settings.
Definition Minimizer.h:48
constexpr int WhichMinimizerDefault
WhichMinimizerDefault default value for the Minimizers to use.
Definition Minimizer.h:96
constexpr int CalcWhichMinimizer(bool UseGSL=UseGSLDefault, bool UseCMAES=UseLibCMAESDefault, bool UseNLopt=UseNLoptDefault)
CalcWhichMinimizer Calculates the WhichMinimizer value with the given Minimizer options.
Definition Minimizer.h:61
std::vector< std::vector< std::pair< double, std::vector< double > > > > MinimaDevelopmentWithTemperature(const std::shared_ptr< Class_Potential_Origin > &model, const double &StartingTemperature, const double &FinalTemperature, const double &StepsizeTemperature, const std::vector< std::pair< double, double > > &RNGRanges, const std::size_t &seed, const std::size_t &NumberOfStartingPoints, const int &WhichMinimizer)
MinimaDevelopmentWithTemperature calculates the temperature development of several local minima.
Definition Minimizer.cpp:491
std::vector< double > Minimize_gen_all(const std::shared_ptr< Class_Potential_Origin > &modelPointer, const double &Temp, std::vector< double > &Check, const std::vector< double > &start, const int &WhichMinimizer=WhichMinimizerDefault, bool UseMultithreading=true)
Minimization of the Model Minimizes the given Potential with parameters par and CT-parameters parCT a...
Definition Minimizer.cpp:84
const bool UseLibCMAESDefault
UseLibCMAESDefault Use the Libcmaes minimizer in the default settings.
Definition Minimizer.h:39
const bool UseGSLDefault
UseGSLDefault Use the GSL minimizer in the default settings.
Definition Minimizer.h:31
MinimizerStatus
The MinimizerStatus enum for the Statusflags of the minimizer.
Definition Minimizer.h:117
ModelIDs
The ModelIDs enum containing all IDs for identifying the Models.
Definition IncludeAllModels.h:32
This classes calculates the Bounce action of the potential with a set temperature.
Definition CalculateEtaInterface.h:24
The ISMConstants struct containing all necessary SM constants.
Definition SMparam.h:24
The EWPTReturnType struct Contains the following information.
Definition Minimizer.h:145
The MinimizersToUse struct used as a return of GetMinimizers.
Definition Minimizer.h:73