-
Notifications
You must be signed in to change notification settings - Fork 118
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 nrn_mlh_gsort
#2692
Refactor nrn_mlh_gsort
#2692
Conversation
* use `std::sort` instead of a custom one * remove unnecessary macros and inline functions * add tests * fixes #2681
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #2692 +/- ##
==========================================
+ Coverage 66.30% 66.35% +0.04%
==========================================
Files 558 559 +1
Lines 108434 108395 -39
==========================================
+ Hits 71899 71921 +22
+ Misses 36535 36474 -61 ☔ View full report in Codecov by Sentry. |
✔️ 4a00c66 -> Azure artifacts URL |
This comment has been minimized.
This comment has been minimized.
Models using this function (found by grepping):
Verification for those specific models: https://github.com/neuronsimulator/nrn-modeldb-ci/actions/runs/7694942608 |
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.
Nice simplification!
Quality Gate passedThe SonarCloud Quality Gate passed, but some issues were introduced. 8 New issues |
✔️ 2a7de92 -> Azure artifacts URL |
std::sort
instead of a custom onenrn_mlh_gsort
withstd::sort
#2681