-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed divrem bugs, added pseudo divrem (#72)
* Added assertion in coefficient_div to warn about problem of dividing a constant by a polynomial. * Minor fixes in polynomial.c. * Added pseudo div and rem functions. * fixed various typos and minor code issues * Updated trace macros * removed function prototype with missing implementation from header file * Bump version * fixed typo * removed duplicate macro definition * updated description on lp_polynomial_reduce and coefficient_reduce * Undo patch version bump * added new functions to python bindings and updated tests * fixed algebraic number tests and added return code on failed tests * minor format --------- Co-authored-by: Thomas Hader <[email protected]>
- Loading branch information
Showing
15 changed files
with
387 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# Configure the version | ||
configure_file(version.h.in ${CMAKE_CURRENT_SOURCE_DIR}/version.h) | ||
|
||
# Find all the base headers and add them to install terget | ||
# Find all the base headers and add them to install target | ||
file(GLOB headers *.h) | ||
install(FILES ${headers} DESTINATION include/poly) | ||
|
||
# Find all the cxx headers and add them to install terget | ||
# Find all the cxx headers and add them to install target | ||
file(GLOB headers_cxx polyxx/*.h) | ||
install(FILES ${headers_cxx} DESTINATION include/poly/polyxx) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.