Add things for monte carlo simulations

This commit is contained in:
Cory Balaton 2023-10-31 20:27:35 +01:00
parent 54ec93d8ee
commit 5ac838a266
No known key found for this signature in database
GPG Key ID: 3E5FCEBFD80F432B
2 changed files with 31 additions and 0 deletions

19
include/monte_carlo.hpp Normal file
View File

@ -0,0 +1,19 @@
/** @file monte_carlo.hpp
*
* @author Cory Alexander Balaton (coryab)
* @author Janita Ovidie Sandtrøen Willumsen (janitaws)
*
* @version 1.0
*
* @brief Functions for monte carlo simulations.
*
* @bug No known bugs
* */
#ifndef __MONTE_CARLO__
#define __MONTE_CARLO__
void burn_in_time();
void pd_estimate();
#endif

12
src/monte_carlo.cpp Normal file
View File

@ -0,0 +1,12 @@
/** @file monte_carlo.cpp
*
* @author Cory Alexander Balaton (coryab)
* @author Janita Ovidie Sandtrøen Willumsen (janitaws)
*
* @version 1.0
*
* @brief Implementation of the monte carlo functions
*
* @bug No known bugs
* */
#include "monte_carlo.hpp"