bn_mp_n_root_ex.c


Log

Author Commit Date CI Message
Francois Perrad 8b2daf78 2019-05-19T17:16:13 always use varname err with mp_err
Francois Perrad c1f5b06d 2019-05-20T05:36:08 refactor with mp_init_multi
Daniel Mendler f55f0a9e 2019-05-18T09:28:33 fix some usages of enum types
Daniel Mendler 4534056c 2019-05-13T00:22:18 use enums mp_err, mp_ord, mp_bool, mp_sign * MP_USE_ENUMS enables enums * Wc++-compat catches some implicit conversions if MP_USE_ENUMS is defined * 100% backwards compatible API/ABI if MP_USE_ENUMS is not defined
Daniel Mendler fe9a8189 2019-05-07T10:56:13 sanitize comments in helper.pl
Daniel Mendler ff561404 2019-04-07T15:29:11 shorter headers
Daniel Mendler 70a30ae7 2019-04-07T02:29:28 remove footers
czurnieden 8312296b 2019-04-06T19:38:23 workaround for bug in helper.pl
czurnieden 984d3ff6 2019-04-01T03:41:26 changed seed to make nth-root usable
Steffen Jaeckel 18355de6 2018-12-29T17:56:20 Update file headers [skip ci]
czurnieden 9034e712 2018-05-02T21:43:17 Do not use installed headers for building
Steffen Jaeckel f51249b6 2018-02-02T12:07:21 clean-up file headers
Francois Perrad bdbed000 2017-10-15T19:57:12 literal suffix
Francois Perrad 40c763a1 2017-10-15T16:11:09 literal suffix in call function
nijtmans f674018a 2017-09-20T16:59:43 constify remaining functions
Francois Perrad 2344bcea 2017-08-30T20:23:46 format with astyle (step 6)
Francois Perrad 45771cc9 2017-08-30T19:07:12 format with astyle (step 1)
Francois Perrad aab1b3d9 2017-08-28T22:34:46 split label & statement
Francois Perrad d6a9a58f 2017-08-30T20:08:58 remove space after function name and cast
Steffen Jaeckel 6f212942 2017-08-28T16:27:26 replace SVN tags
Francois Perrad 99c84acc 2015-11-13T10:28:23 add parentheses for explicit operator precedence
Steffen Jaeckel 4e3f1344 2015-11-12T01:49:07 provide tommath_private.h tommath.h contains declarations for the public part of the library. tommath_private.h contains the functions which are private to ltm and should not be exposed to the public.
Tom St Denis 079b0f65 2015-10-30T17:55:29 Getting ready for v0.43.0 release Also updated my email address... Signed-off-by: Tom St Denis <tstdenis82@gmail.com>
Steffen Jaeckel 52cfd5ff 2014-02-14T11:26:07 mp_n_root: add mp_n_root_ex() with parameter 'fast' for mp_expt_d_ex() This change is introduced to be able to choose the underlying implementation of mp_expt_d_ex() The implementation of the root_n functionality is now implemented in the mp_n_root_ex() function. The parameter 'fast' is just passed over to mp_expt_d_ex(). mp_n_root() defaults to the pre 921be35779f7d71080ad85c27ed58671602d59b3 implementation