We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
what's the purpose of this if test if it always does the same thing?
301 // set the burning cutoff coordinate on the coarser levels 302 for (auto n = which_lev - 1; n >= 0; --n) { 303 if (burning_cutoff_density_hi_coord(n + 1) % 2 == 0) { 304 burning_cutoff_density_hi_coord(n) = 0; 305 } else { 306 burning_cutoff_density_hi_coord(n) = 0; 307 } 308 } ```
The text was updated successfully, but these errors were encountered:
these were cleaned up in #419
Sorry, something went wrong.
No branches or pull requests
what's the purpose of this if test if it always does the same thing?
The text was updated successfully, but these errors were encountered: