Skip to content

Commit

Permalink
try also allowing smaller biases
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahm-LANL committed Dec 19, 2024
1 parent 65b1d0e commit 9ca7b4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/interact.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ double bound_bias(double bias, double nu, int type, int interaction,
// Another BOUND_BIAS method. Assumes large hotspots, may work fine instead
// assuming ~GM/c^2 length scale for hot spots.
double dtau = conservative_dtau_est(nu, type, interaction, m);
bias = MY_MIN(bias, 1. / (dtau * RAD_SCATT_TYPES));
bias = MY_MIN(bias, 1. / (dtau * RAD_NUM_TYPES * RAD_SCATT_TYPES));
bias = MY_MAX(bias, 1.);

return bias;
Expand Down

0 comments on commit 9ca7b4a

Please sign in to comment.