Skip to content
Snippets Groups Projects
Commit 1e95b88b authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Prevent the usage of stellar feedback over MPI.

parent 06ba0c84
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,7 @@ Valid options are:
-r Continue using restart files.
-s Run with hydrodynamics.
-S Run with stars.
-b Run with stars feedback.
-t {int} The number of threads to use on each MPI rank. Defaults to 1 if not specified.
-T Print timers every time-step.
-v [12] Increase the level of verbosity:
......
......@@ -507,6 +507,10 @@ int main(int argc, char *argv[]) {
error("Cannot reconstruct m-poles every step over MPI (yet).");
#endif
#ifdef WITH_MPI
if (with_feedback) error("Can't run with feedback over MPI (yet).");
#endif
#if defined(WITH_MPI) && defined(HAVE_VELOCIRAPTOR)
if (with_structure_finding && nr_nodes > 1)
error("VEOCIraptor not yet enabled over MPI.");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment