Skip to content
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

Exception Handling #1044

Merged
merged 24 commits into from Aug 14, 2016
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
13cbcb4
Init exception handling
rajithv Jul 22, 2016
efe0630
Macros for exception handling
rajithv Jul 24, 2016
27516e0
Basic runtime exception handling for most of the wrappers
rajithv Jul 24, 2016
8a6cd35
SymEngine Exception classes
rajithv Jul 25, 2016
8a37dc9
Removing CWRAPPER_END_EXTRA
rajithv Jul 25, 2016
43c2df1
Merge branch 'master' of https://github.com/symengine/symengine into …
rajithv Jul 27, 2016
fe0086c
CWRAPPER_OUTPUT_TYPE implemented
rajithv Jul 27, 2016
18eb68b
All Division by Zero errors to be thrown as DivisioByZero, fixed test…
rajithv Jul 28, 2016
cd9414c
Added more common exceptions to symengine_exception.h
rajithv Jul 29, 2016
6de56f0
Moved exceptions into one common class, added enums for error codes, …
rajithv Jul 29, 2016
81ff094
Specialized exceptions, enum included in cwrappers
rajithv Jul 30, 2016
53d89c4
ParseErrors for exception handling
rajithv Jul 30, 2016
f9e4be7
Merge branch 'master' of https://github.com/symengine/symengine into …
rajithv Jul 31, 2016
f2b1452
Renaming exceptions
rajithv Jul 31, 2016
b0d8609
Merge branch 'master' of https://github.com/symengine/symengine into …
rajithv Aug 3, 2016
5bc99a6
Renaming error codes
rajithv Aug 3, 2016
e4bc43e
NotImplementedError
rajithv Aug 3, 2016
d6d04ba
NotImplementedError tests
rajithv Aug 4, 2016
8a2283d
SymEngine Exceptions for Errors with specialized messages
rajithv Aug 4, 2016
25ef8fc
All runtime_errors converted to SymEngineExceptions
rajithv Aug 4, 2016
8bfe4ec
Merge branch 'master' of https://github.com/symengine/symengine into …
rajithv Aug 4, 2016
e9ac6c2
Fixing errors
rajithv Aug 5, 2016
c0a0b73
Fixing errors in tests
rajithv Aug 12, 2016
7680322
Merge branch 'master' of https://github.com/symengine/symengine into …
rajithv Aug 12, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion symengine/CMakeLists.txt
Expand Up @@ -85,7 +85,7 @@ set(HEADERS
real_mpfr.h complex_mpc.h type_codes.inc lambda_double.h series.h series_piranha.h
basic-methods.inc series_flint.h series_generic.h sets.h derivative.h polys/upolybase.h
polys/uintpoly_flint.h polys/uintpoly_piranha.h eval.h flint_wrapper.h polys/basic_conversions.h
polys/usymenginepoly.h polys/uratpoly.h
symengine_exception.h polys/usymenginepoly.h polys/uratpoly.h
)

# Configure SymEngine using our CMake options:
Expand Down