Skip to content

Commit

Permalink
Making apply_fix* parameters false by default
Browse files Browse the repository at this point in the history
This is to make sure it's easier for the user to recover the published
models.
  • Loading branch information
cdplagos committed Jan 10, 2025
1 parent 292b59f commit 9111f4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/dark_matter_halos.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class DarkMatterHaloParameters {
bool random_lambda = false;
bool spin_mass_dependence = false;
bool use_converged_lambda_catalog = false;
bool apply_fix_to_mass_swapping_events = true;
bool apply_fix_to_mass_swapping_events = false;
int min_part_convergence = 100;

};
Expand Down
2 changes: 1 addition & 1 deletion include/execution.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class ExecutionParameters {

// massive transients parameters
// flag to apply fixes for them
bool apply_fix_to_massive_transient_events = true;
bool apply_fix_to_massive_transient_events = false;
// Mass_DSH/Mass_SH minimum decrease value
float transient_lostmass_ratio = 0.7;
// Mass_TDSH/Mass_SH minimum increase value
Expand Down

0 comments on commit 9111f4e

Please sign in to comment.