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
MinimizeGSL.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 MINIMIZEGSL_H_
12#define MINIMIZEGSL_H_
13
14#include <cmath>
15#include <gsl/gsl_vector_double.h> // for gsl_vector
16#include <memory>
17#include <vector>
18
19namespace BSMPT
20{
21class Class_Potential_Origin;
22namespace Minimizer
23{
24
28const double GSL_Tolerance = std::pow(10, -4);
29
34{
35 const Class_Potential_Origin &model;
36 double Temp;
37 GSL_params(const Class_Potential_Origin &modelIN, const double &temperature)
38 : model{modelIN}
39 , Temp{temperature} {};
40};
41
46double GSL_VEFF_gen_all(const gsl_vector *v, void *p);
47
53 std::vector<double> &sol,
54 const std::vector<double> &start);
55
69std::pair<std::vector<double>, bool>
71 const double &Temp,
72 const int &seed,
73 bool UseMultiThreading = true);
74
89std::pair<std::vector<double>, bool>
91 const double &Temp,
92 const int &seed,
93 const std::size_t &MaxSol,
94 bool UseMultiThreading = true);
95
111std::pair<std::vector<double>, bool>
113 const double &Temp,
114 const int &seed,
115 std::vector<std::vector<double>> &saveAllMinima,
116 const std::size_t &MaxSol,
117 bool UseMultiThreading = true);
118
119} // namespace Minimizer
120} // namespace BSMPT
121
122#endif // MINIMIZEGSL_H_
std::pair< std::vector< double >, bool > GSL_Minimize_gen_all(const Class_Potential_Origin &model, const double &Temp, const int &seed, bool UseMultiThreading=true)
Definition MinimizeGSL.cpp:140
const double GSL_Tolerance
GSL_Tolerance Tolerance used in the GSL routines.
Definition MinimizeGSL.h:28
int GSL_Minimize_From_S_gen_all(struct GSL_params &p, std::vector< double > &sol, const std::vector< double > &start)
Definition MinimizeGSL.cpp:61
double GSL_VEFF_gen_all(const gsl_vector *v, void *p)
Definition MinimizeGSL.cpp:41
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
Definition MinimizeGSL.h:34