-
Notifications
You must be signed in to change notification settings - Fork 4
Add RoadType as Road attribute
#390
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
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #390 +/- ##
==========================================
- Coverage 83.68% 83.55% -0.13%
==========================================
Files 53 53
Lines 5393 5466 +73
Branches 618 634 +16
==========================================
+ Hits 4513 4567 +54
- Misses 869 888 +19
Partials 11 11
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
| HIGHWAY = 0, | ||
| PRIMARY = 1, | ||
| SECONDARY = 2, | ||
| TERTIARY = 3, |
Check notice
Code scanning / Cppcheck (reported by Codacy)
MISRA 12.3 rule Note
| PRIMARY = 1, | ||
| SECONDARY = 2, | ||
| TERTIARY = 3, | ||
| RESIDENTIAL = 4, |
Check notice
Code scanning / Cppcheck (reported by Codacy)
MISRA 12.3 rule Note
| CHECK_EQ(graph.nTrafficLights(), 0); | ||
| } | ||
| THEN("Road types are set") { | ||
| int nHighways = 0, nPrimary = 0, nSecondary = 0, nTertiary = 0, |
Check notice
Code scanning / Cppcheck (reported by Codacy)
MISRA 12.3 rule Note test
| THEN("Road types are set") { | ||
| int nHighways = 0, nPrimary = 0, nSecondary = 0, nTertiary = 0, | ||
| nResidential = 0; | ||
| for (auto const& [_, pEdge] : graph.edges()) { |
Check notice
Code scanning / Cppcheck (reported by Codacy)
MISRA 12.3 rule Note test
No description provided.