diff --git a/examples/IsolatedGalaxy/IsolatedGalaxy_starformation/isolated_galaxy.yml b/examples/IsolatedGalaxy/IsolatedGalaxy_starformation/isolated_galaxy.yml index 341cae8a3fe87e01aecd6c77bf8f86a9cc940bf1..7dac0a8a6c3b8d4c583ae6138513f0c5259227b1 100644 --- a/examples/IsolatedGalaxy/IsolatedGalaxy_starformation/isolated_galaxy.yml +++ b/examples/IsolatedGalaxy/IsolatedGalaxy_starformation/isolated_galaxy.yml @@ -35,7 +35,7 @@ Statistics: # Parameters related to the initial conditions InitialConditions: - file_name: lowres8.hdf5 # The file to read + file_name: fid.hdf5 # The file to read periodic: 0 # Are we running with periodic ICs? stars_smoothing_length: 0.5 diff --git a/src/engine_maketasks.c b/src/engine_maketasks.c index aaf8bc677b3cd6de21cdbf8d74393263a816f82f..85a9e07ef06c80490d420f4b8ccbe0cd28261554 100644 --- a/src/engine_maketasks.c +++ b/src/engine_maketasks.c @@ -59,6 +59,7 @@ * @param ci The sending #cell. * @param cj Dummy cell containing the nodeID of the receiving node. * @param t_grav The send_grav #task, if it has already been created. + * @param t_ti The recv_ti_end #task, if it has already been created. */ void engine_addtasks_send_gravity(struct engine *e, struct cell *ci, struct cell *cj, struct task *t_grav, @@ -124,6 +125,7 @@ void engine_addtasks_send_gravity(struct engine *e, struct cell *ci, * @param t_xv The send_xv #task, if it has already been created. * @param t_rho The send_rho #task, if it has already been created. * @param t_gradient The send_gradient #task, if already created. + * @param t_ti The recv_ti_end #task, if it has already been created. */ void engine_addtasks_send_hydro(struct engine *e, struct cell *ci, struct cell *cj, struct task *t_xv, @@ -227,6 +229,7 @@ void engine_addtasks_send_hydro(struct engine *e, struct cell *ci, * @param ci The sending #cell. * @param cj Dummy cell containing the nodeID of the receiving node. * @param t_feedback The send_feed #task, if it has already been created. + * @param t_ti The recv_ti_end #task, if it has already been created. */ void engine_addtasks_send_stars(struct engine *e, struct cell *ci, struct cell *cj, struct task *t_feedback, @@ -379,6 +382,7 @@ void engine_addtasks_recv_hydro(struct engine *e, struct cell *c, * @param e The #engine. * @param c The foreign #cell. * @param t_feedback The recv_feed #task, if it has already been created. + * @param t_ti The recv_ti_end #task, if it has already been created. */ void engine_addtasks_recv_stars(struct engine *e, struct cell *c, struct task *t_feedback, struct task *t_ti) { @@ -437,6 +441,7 @@ void engine_addtasks_recv_stars(struct engine *e, struct cell *c, * @param e The #engine. * @param c The foreign #cell. * @param t_grav The recv_gpart #task, if it has already been created. + * @param t_ti The recv_ti_end #task, if it has already been created. */ void engine_addtasks_recv_gravity(struct engine *e, struct cell *c, struct task *t_grav, struct task *t_ti) {