-
Notifications
You must be signed in to change notification settings - Fork 17
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
Refactor files to remove small files and simplify file names #100
Conversation
dpsanders
commented
Apr 2, 2016
- Simplify file names
- Moved macros from rounding.jl into macros.jl, and the non-macro stuff from rounding.jl into precision.jl
- Removed rationalize.jl that is no longer used
- Move short printing stuff into intervals.jl
include("conversion_promotion.jl") | ||
include("special.jl") | ||
include("macros.jl") | ||
include("conversion.jl") | ||
include("arithmetic.jl") | ||
include("precision.jl") |
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.
The file "precision.jl" contains, among others, the IntervalParameters
type and other rounding functions. Though it seems to create no problems for the tests, for sanity I think it is better to include this file before any actual use of parameters or rounding stuff. In particular, include it before "arithmetic.jl".
I think I can merge it once my sole comment is implemented. |
It may be worth to implement the idea in #93 before merging this. |
88692eb
to
9bf2e71
Compare