-
Notifications
You must be signed in to change notification settings - Fork 14
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
Replace std::terminate with throw #3
Conversation
Test Report (Ubuntu)0 files 0 suites 0s ⏱️ Results for commit 11b1d8c. |
Test Report (MacOS)0 files 0 suites 0s ⏱️ Results for commit 11b1d8c. |
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.
Thanks for running the benchmarks! This change would not be possible without them.
Also, don't forget to update the changelog!
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.
Awesome work on the refactoring and the tests! This is a nice improvement over the first iteration.
In addition to the in-situ review comments, I would also suggest creating a Test_Abort.cpp
file with a simple unit test to verify the format of an abort exception message.
Finally, don't forget to append this change to CHANGELOG.md
!
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! I have a few grammar and formatting suggestions but otherwise the PR looks solid.
* Switch multi-index to row-major order * Replace 'utilities' tag with 'Utilities' * Fix tests specifying indices in column-major order * Update changelog * Fix Python unit test using column-major indices * Undo modification to previous changelog entry * Fix PR number
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.
🎉 Looks good to me! 🎉
Context: The
Abort.hpp
header defines a series of macros that callstd::terminate
in the event of an unfavourable state or event in Jet. This will cause problems with the Python bindings, and kill the Python session is such a state or event is encountered.Description of the Change: This PR replaces
std::terminate
with a thrown exception defined by the error message.Benefits: This will prevent the Python session being terminated in the event of a call to any of the
Abort.hpp
macros.Possible Drawbacks: None
Related GitHub Issues: None