FTQuant
0.1
|
The main header file for the FTQlib library. More...
#include <cmath>
#include <functional>
#include <string>
#include <vector>
#include "BlackSholes.hpp"
#include "LocalVolatility.hpp"
Go to the source code of this file.
Classes | |
class | MonteCarloResult |
A container for storing the result of a Monte-Carlo simulation. More... | |
class | MonteCarloPricer< T > |
A controller for derivatives pricing via a Monte-Carlo simulation. More... | |
class | PartialDiffEqPricer< T > |
A controller for derivatives pricing via a PDE solution. More... | |
Variables | |
const int | ERROR_MATHEMATICS |
Error code for any mathematical errors. More... | |
const int | SUCCESS = 0 |
Success code. More... | |
const int | ERROR_NO_CONVERGENCE |
Error code for lack of convergence in simulations and other numerical estimations. More... | |
const int | ERROR_INVALID_INPUT |
Error code for invalid input-related issues. More... | |
const int | ERROR_INVALID_MODEL |
Error code for model-related issues. More... | |
The main header file for the FTQlib library.
This file contains the main header file for the FTQlib library. It contains the main classes and functions for the library.
Definition in file ftqlib.hpp.
const int ERROR_INVALID_INPUT |
Error code for invalid input-related issues.
Definition at line 30 of file ftqlib.hpp.
const int ERROR_INVALID_MODEL |
const int ERROR_MATHEMATICS |
Error code for any mathematical errors.
Definition at line 25 of file ftqlib.hpp.
const int ERROR_NO_CONVERGENCE |
Error code for lack of convergence in simulations and other numerical estimations.
Definition at line 28 of file ftqlib.hpp.
Referenced by MonteCarloPricer< T >::estimate_price().
const int SUCCESS = 0 |
Success code.
Definition at line 27 of file ftqlib.hpp.
Referenced by MonteCarloPricer< T >::estimate_price().