Make Arb documentation look cleaner, remove macros from docs

This commit is contained in:
ricky.e.farr@gmail.com 2015-08-13 06:16:56 -04:00
parent 71f77917f0
commit f93788b756

View file

@ -127,24 +127,10 @@ Assignment and rounding
.. function:: void arb_set_si(arb_t y, long x)
.. macro:: arb_init_set_si(arb_t y, long x)
Macro that initializes *y* and sets the value to *x*
.. function:: void arb_set_ui(arb_t y, ulong x)
.. macro:: arb_init_set_ui(arb_t y, long x)
Macro that initializes *y* and sets the value to *x*
.. function:: void arb_set_d(arb_t y, double x)
Sets *y* to be exactly value of *x*
.. macro:: arb_init_set_d(arb_t y, double x)
Macro that initializes *y* and sets the value to *x*
.. function:: void arb_set_fmpz(arb_t y, const fmpz_t x)
Sets *y* to the value of *x* without rounding.