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

[RFC] MPFR and MPC on Base #2814

Merged
merged 31 commits into from
May 3, 2013
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
4acb40c
Basic support for building the MPFR
andrioni Apr 10, 2013
9853f7f
Add more mentions to the MPFR on the build system and documentation
andrioni Apr 10, 2013
6762def
Add mpc to the build system and basic documentation
andrioni Apr 10, 2013
e0ec409
Add MPC and MPFR to Base
andrioni Apr 10, 2013
f48a16a
Change BigInt to use a precise mpz_struct
andrioni Apr 11, 2013
5142d1d
Install libmpfr-dev and libmpc-dev packages explicitly
andrioni Apr 11, 2013
f88a640
Update MPFRFloat to use a precise sized mpfr_struct
andrioni Apr 11, 2013
94ba263
Change default precision of MPFRFloat to 256 bits
andrioni Apr 11, 2013
9bff273
Rename precision-related functions and add them to Float32 and Float64
andrioni Apr 13, 2013
4309078
Update MPCComplex to use a precise mpc_struct
andrioni Apr 13, 2013
cd20424
Flexibilize the ROUNDING_MODE for MPCComplex numbers
andrioni Apr 13, 2013
2d23952
Convert methods for other common complex types available
andrioni Apr 13, 2013
38392cd
Use more efficient addition/subtraction/multiplication for ints/uints
andrioni Apr 14, 2013
d458148
Scrap mpz_struct, as suggested by Jeff
andrioni Apr 21, 2013
d23657c
Fix ccall type issues in bigint.jl, according to #2901
andrioni Apr 21, 2013
1ee273e
Inline MPFRFloat structure and refactor it into a non-parametric type
andrioni Apr 22, 2013
577b307
Fix ccall type signatures in mpfr.jl, according to #2901
andrioni Apr 22, 2013
3bead72
Fix the BigInt basic arithmetic issues
andrioni Apr 22, 2013
9a00d5a
Implement efficient basic arithmetic for signed/unsigned/float/BigInt…
andrioni Apr 22, 2013
b25a36e
Add hypot function
andrioni Apr 22, 2013
ba9a8d4
Inline MPCComplex structure and refactor it into a non-parametric type
andrioni Apr 23, 2013
07346b0
Add copy function to MPCComplex
andrioni Apr 25, 2013
8b33832
Change default precision of MPCComplex to 256-256
andrioni Apr 26, 2013
28328d0
Add exp, log, trigonometric functions and @simonbyrne's test suite
andrioni Apr 26, 2013
1b9ba27
Add conjugate function to MPCComplex
andrioni Apr 26, 2013
4a01f1b
Add ldexp and atan2 functions to MPFRFloat
andrioni Apr 26, 2013
22e6f36
Fix Makefile after rebase
andrioni May 3, 2013
bec3c4f
Basic rounding control available for MPFRFloat
andrioni May 3, 2013
0eca14e
Finally rename MPFRFloat to BigFloat and remove the old code
andrioni May 3, 2013
728a1f5
Remove all mentions to MPC, as it was decided to scrap it
andrioni May 3, 2013
be7b6c9
Remove MPC version
andrioni May 3, 2013
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Change default precision of MPCComplex to 256-256
  • Loading branch information
andrioni committed May 3, 2013
commit 8b338328301ede98d7002888c9029e00bd4154d3
2 changes: 1 addition & 1 deletion base/mpc.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import
promote_rule, real, show, showcompact, sqrt, string, get_precision

const ROUNDING_MODE = [0]
const DEFAULT_PRECISION = [53, 53]
const DEFAULT_PRECISION = [256, 256]

# Basic type and initialization definitions

Expand Down