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 File Reference
#include <cmath>
#include <gsl/gsl_vector_double.h>
#include <memory>
#include <vector>

Go to the source code of this file.

Classes

struct  BSMPT::Minimizer::GSL_params
 

Namespaces

namespace  BSMPT
 This classes calculates the Bounce action of the potential with a set temperature.
 

Functions

double BSMPT::Minimizer::GSL_VEFF_gen_all (const gsl_vector *v, void *p)
 
int BSMPT::Minimizer::GSL_Minimize_From_S_gen_all (struct GSL_params &p, std::vector< double > &sol, const std::vector< double > &start)
 
std::pair< std::vector< double >, bool > BSMPT::Minimizer::GSL_Minimize_gen_all (const Class_Potential_Origin &model, const double &Temp, const int &seed, bool UseMultiThreading=true)
 
std::pair< std::vector< double >, bool > BSMPT::Minimizer::GSL_Minimize_gen_all (const Class_Potential_Origin &model, const double &Temp, const int &seed, const std::size_t &MaxSol, bool UseMultiThreading=true)
 
std::pair< std::vector< double >, bool > BSMPT::Minimizer::GSL_Minimize_gen_all (const Class_Potential_Origin &model, const double &Temp, const int &seed, std::vector< std::vector< double > > &saveAllMinima, const std::size_t &MaxSol, bool UseMultiThreading=true)
 

Variables

const double BSMPT::Minimizer::GSL_Tolerance = std::pow(10, -4)
 GSL_Tolerance Tolerance used in the GSL routines.
 

Function Documentation

◆ GSL_Minimize_From_S_gen_all()

int BSMPT::Minimizer::GSL_Minimize_From_S_gen_all ( struct GSL_params p,
std::vector< double > &  sol,
const std::vector< double > &  start 
)

Calculates the next local minimum in the model from the point start

Returns
The final status of the gsl minimization process.

◆ GSL_Minimize_gen_all() [1/3]

std::pair< std::vector< double >, bool > BSMPT::Minimizer::GSL_Minimize_gen_all ( const Class_Potential_Origin model,
const double &  Temp,
const int &  seed,
bool  UseMultiThreading = true 
)

Minimize the Potential from different random starting points and choose the local minimum with the deepest potential value as the candidate for the global minimum

Parameters
modelmodel reference
TempTemperature at which to minimise the parameter point
seedseed used to find the random starting points for the local optimisations
UseMultiThreadingDecides if the algorithm should use multithreading or not
Returns
first: vector with candidate for the global minimum, second: True if a candidate for the global minimum is found and false otherwise

◆ GSL_Minimize_gen_all() [2/3]

std::pair< std::vector< double >, bool > BSMPT::Minimizer::GSL_Minimize_gen_all ( const Class_Potential_Origin model,
const double &  Temp,
const int &  seed,
const std::size_t &  MaxSol,
bool  UseMultiThreading = true 
)

Minimize the Potential from different random starting points and choose the local minimum with the deepest potential value as the candidate for the global minimum

Parameters
modelmodel reference
TempTemperature at which to minimise the parameter point
seedseed used to find the random starting points for the local optimisations
MaxSolnumbers of local minima to find
UseMultiThreadingDecides if the algorithm should use multithreading or not
Returns
first: vector with candidate for the global minimum, second: True if a candidate for the global minimum is found and false otherwise

◆ GSL_Minimize_gen_all() [3/3]

std::pair< std::vector< double >, bool > BSMPT::Minimizer::GSL_Minimize_gen_all ( const Class_Potential_Origin model,
const double &  Temp,
const int &  seed,
std::vector< std::vector< double > > &  saveAllMinima,
const std::size_t &  MaxSol,
bool  UseMultiThreading = true 
)

Minimize the Potential from different random starting points and choose the local minimum with the deepest potential value as the candidate for the global minimum

Parameters
modelmodel reference
TempTemperature at which to minimise the parameter point
seedseed used to find the random starting points for the local optimisations
saveAllMinimaList of all local minima
MaxSolnumbers of local minima to find
UseMultiThreadingDecides if the algorithm should use multithreading or not
Returns
first: vector with the solution, second: True if a candidate for the global minimum is found and false otherwise

◆ GSL_VEFF_gen_all()

double BSMPT::Minimizer::GSL_VEFF_gen_all ( const gsl_vector *  v,
void *  p 
)

Calculates the value of the effective potential at the vev v and temperature p->Temp for the gsl interface