-
Notifications
You must be signed in to change notification settings - Fork 4
Fix bug and add test for adjacency matrix #258
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
| if (row > m_rowOffsets.size() - 2) { | ||
| for (auto i = 0ul; i < row - m_rowOffsets.size() + 2; ++i) { | ||
| m_rowOffsets.push_back(m_rowOffsets.back() + 1); | ||
| auto n = row - m_rowOffsets.size() + 2; |
Check notice
Code scanning / Cppcheck (reported by Codacy)
MISRA 10.4 rule Note
| for (auto i = 0ul; i < row - m_rowOffsets.size() + 2; ++i) { | ||
| m_rowOffsets.push_back(m_rowOffsets.back() + 1); | ||
| auto n = row - m_rowOffsets.size() + 2; | ||
| for (auto i = 0ul; i < n - 1; ++i) { |
Check notice
Code scanning / Cppcheck (reported by Codacy)
MISRA 7.3 rule Note
| for (auto i = 0ul; i < row - m_rowOffsets.size() + 2; ++i) { | ||
| m_rowOffsets.push_back(m_rowOffsets.back() + 1); | ||
| auto n = row - m_rowOffsets.size() + 2; | ||
| for (auto i = 0ul; i < n - 1; ++i) { |
Check notice
Code scanning / Cppcheck (reported by Codacy)
MISRA 12.1 rule Note
| for (auto i = 0ul; i < row - m_rowOffsets.size() + 2; ++i) { | ||
| m_rowOffsets.push_back(m_rowOffsets.back() + 1); | ||
| auto n = row - m_rowOffsets.size() + 2; | ||
| for (auto i = 0ul; i < n - 1; ++i) { |
Check notice
Code scanning / Cppcheck (reported by Codacy)
MISRA 10.4 rule Note
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #258 +/- ##
==========================================
+ Coverage 90.40% 90.47% +0.07%
==========================================
Files 37 37
Lines 4855 4893 +38
Branches 457 457
==========================================
+ Hits 4389 4427 +38
Misses 466 466
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
No description provided.