Removed remaining macros and unused includes

This commit is contained in:
Yohai Meiron 2020-10-28 21:15:51 -04:00
parent d9ed8e5131
commit 54231b8537
5 changed files with 63 additions and 66 deletions

View file

@ -31,7 +31,25 @@ eta = 0.01
# processes on a machine with a single device, set the value to 1 and use the
# mpirun utility (or whatever is used in your job scheduler) to launch as many
# processes as you like.
#devices_per_node = 1
devices_per_node = 1
# The power of 2 of the maximum timestep. For example, if dt_max_power=-3 and
# the adaptive timestep algotirhm suggests anything bigger than 0.125, the
# timestep will be 0.125. If the 2^dt_max_power > dt_contr, the maximum timestep
# is dt_contr. [default: -3]
#dt_max_power = -3
# The power of 2 of the minimum timestep. [default: -36]
#dt_min_power = -36
# Eta correction factor for the first step (the timestep will be calculated with
# eta divided by eta_s_corr) [default: 4]
#eta_s_corr = 4.0
# Eta correction factor for the black holes (the timestep for the black holes
# will be calculated with eta divided by eta_bh_corr). [default: 4]
#eta_bh_corr = 4.0
##########