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
MinimizeLibCMAES.h
Go to the documentation of this file.
1// Copyright (C) 2020 Philipp Basler, Margarete Mühlleitner and Jonas Müller
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
7#ifndef MINIMIZELIBCMAES_H
8#define MINIMIZELIBCMAES_H
9
10#include <memory>
11#include <vector>
17namespace BSMPT
18{
19class Class_Potential_Origin;
20namespace Minimizer
21{
22struct PointerContainerMinPlane;
23namespace LibCMAES
24{
25
30{
31 std::vector<double> result;
32 int CMAESStatus;
33};
34
42 const double &Temp,
43 const std::vector<double> &VevMinimum);
44
55 const std::vector<double> &Start);
56
57} // namespace LibCMAES
58} // namespace Minimizer
59} // namespace BSMPT
60
61#endif // MINIMIZELIBCMAES_H
LibCMAESReturn min_cmaes_gen_all(const Class_Potential_Origin &model, const double &Temp, const std::vector< double > &VevMinimum)
Definition MinimizeLibCMAES.cpp:33
LibCMAESReturn CMAES_Minimize_Plane_gen_all(const struct PointerContainerMinPlane &params, const std::vector< double > &Start)
Definition MinimizeLibCMAES.cpp:89
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 LibCMAESReturn struct which is returned by the routine.
Definition MinimizeLibCMAES.h:30
Definition MinimizePlane.h:71