Add things for monte carlo simulations

This commit is contained in:
2023-10-31 20:27:35 +01:00
parent 54ec93d8ee
commit 5ac838a266
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