FTQuant  0.1
MonteCarlo.cpp
Go to the documentation of this file.
1 
6 #include <cmath>
7 #include <ftqlib.hpp>
8 
14 std::string MonteCarloResult::to_json() const {
15  std::string json = "{";
16  json += "\"result_code\": " + std::to_string(result_code) + ", " +
17  "\"n_simulations\": " + std::to_string(n_simulations) + ", " +
18  "\"error\": " + std::to_string(error) + ", " +
19  "\"result\": " + std::to_string(result) + "}";
20 
21  return json;
22 }
std::string to_json() const
A function that converts a MonteCarloResult to a JSON string.
Definition: MonteCarlo.cpp:14
The main header file for the FTQlib library.