OpenMC/include/openmc/initialize.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
311 B
C
Raw Permalink Normal View History

#ifndef OPENMC_INITIALIZE_H
#define OPENMC_INITIALIZE_H
2018-04-20 14:55:06 -05:00
#ifdef OPENMC_MPI
#include "mpi.h"
2018-04-20 14:55:06 -05:00
#endif
namespace openmc {
int parse_command_line(int argc, char* argv[]);
#ifdef OPENMC_MPI
void initialize_mpi(MPI_Comm intracomm);
#endif
2019-01-23 10:35:28 -06:00
void read_input_xml();
} // namespace openmc
#endif // OPENMC_INITIALIZE_H