-
-
Notifications
You must be signed in to change notification settings - Fork 423
Ant-colony optimisation metaheuristic graph colouring function #2250
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
base: master
Are you sure you want to change the base?
Ant-colony optimisation metaheuristic graph colouring function #2250
Conversation
The reason for the failure is written in the test log if you scroll up a bit in the logs:
Basically, you allocate a new vector in The correct usage pattern for allocating and freeing a new int vector would be:
The important bit is the A similar problem exists in If you do not know these macros, check out section 5.4 of the chapter about error handling in the docs. |
Thank you for the help. I primarily program in C++ with smart pointers so I completely forgot about the manual memory allocation and I didn't know the logs will have debug statements. I will fix it. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs. Thank you for your contributions. |
Commenting to prevent issue from being closed. Can we keep this open for now. I can't continue on it before we settle the situation with the implementation of the sets. |
Removed the stale label so it will remain open until stalebot makes its rounds again :) |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #2250 +/- ##
=======================================
Coverage 84.31% 84.32%
=======================================
Files 380 380
Lines 62217 62285 +68
Branches 12207 12224 +17
=======================================
+ Hits 52461 52521 +60
- Misses 9756 9764 +8
Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs. Thank you for your contributions. |
No description provided.