mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-07 06:40:06 +00:00
fb16dfecae
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
10 lines
585 B
Plaintext
10 lines
585 B
Plaintext
MPFR library allows user to conduct floating-point calculations with virtually
|
|
any (restricted by available memory only) precision with correct rounding.
|
|
Besides simple arithmetic operations like "+" and "/" the whole set of
|
|
mathematical functions is supported: sin, sqrt, pow, log, etc.
|
|
|
|
MPFR defines custom C-language type to represent floating-point number mpfr_t.
|
|
Mathematical manipulations with mpfr_t - variables are done through
|
|
assembler-look-like functions. For instance, to add two numbers x and y with
|
|
result in z special function mpfr_add(z,x,y,GMP_RNDN) should be called.
|