freebsd-ports/math/mpfrc++/pkg-descr
Stefan Eßer fb16dfecae Remove WWW entries moved into port Makefiles
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)
2022-09-07 23:58:51 +02:00

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.