/** @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