-
Notifications
You must be signed in to change notification settings - Fork 176
New issue
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
refactor: rename local variables and improve comments for IVF #2485
Conversation
Codecov Report
@@ Coverage Diff @@
## main #2485 +/- ##
==========================================
- Coverage 49.85% 49.82% -0.03%
==========================================
Files 466 466
Lines 26248 26246 -2
Branches 12032 12050 +18
==========================================
- Hits 13085 13077 -8
+ Misses 4615 4603 -12
- Partials 8548 8566 +18
... and 1 file with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me. We should keep an eye out to see if this changes Athena outputs.
…roject#2485) - Rename some variables - Improve some comments - One little change: Previously `hypotVariance` was set to 1 if it was 0, which seems like a random quick fix. I think it is more correct to skip the track in this case because the expression in line 408 would diverge and the if-condition should evaluate to `false`. ![image](https://github.com/acts-project/acts/assets/72298366/2a582bad-88bc-447e-9c8a-35d91670c235)
I renamed maximumChi2CutForSeeding in #2485, which broke the Athena build. Here, I change the variable name back to the original one as discussed in the stand-up meeting.
hypotVariance
was set to 1 if it was 0, which seems like a random quick fix. I think it is more correct to skip the track in this case because the expression in line 408 would diverge and the if-condition should evaluate tofalse
.