Use default argument to numpy.select instead of dummy True condition #7240
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Replace patterns where
Trueis used as a fallback condition inselectstatements with the explicitdefaultparameter. This provides ~10% performance improvement for select operations according to time tests.Before:
After:
Changes
Updated 9 files to use the
defaultparameter:count_days_postpartum.py- postpartum days calculationccdf_duration_of_care.py- childcare duration categorizationschool_meal_tier.py- school meal tier determinationsection_22_income.py- elderly/disabled credit incomerace.py- race categorizationmedicaid_category.py- Medicaid category selectiontaxsim_state.py- TAXSIM state code mappingwic_category.py- WIC demographic categoryfsla_overtime_occupation_exemption_category.py- FSLA overtime exemptionTest plan
Fixes #1176
🤖 Generated with Claude Code