Add doxygen comments where needed

This commit is contained in:
Paul Romano 2018-08-23 21:38:23 -05:00
parent c3b7ebd40c
commit 83d64397d1
8 changed files with 67 additions and 14 deletions

View file

@ -22,8 +22,22 @@ int openmc_run() {
namespace openmc {
//==============================================================================
// Global variables
//==============================================================================
std::vector<int64_t> work_index;
//==============================================================================
// Functions
//==============================================================================
void openmc_simulation_init_c()
{
// Determine how much work each process should do
calculate_work();
}
void calculate_work()
{
// Determine minimum amount of particles to simulate on each processor
@ -48,10 +62,4 @@ void calculate_work()
}
}
void openmc_simulation_init_c()
{
// Determine how much work each process should do
calculate_work();
}
} // namespace openmc