Skip to content

Commit 050c09d

Browse files
authored
Merge pull request #2072 from mezzarobba/misc
Two minor doc fixes
2 parents 9500186 + 874de6c commit 050c09d

File tree

4 files changed

+2
-12
lines changed

4 files changed

+2
-12
lines changed

doc/source/arb_poly.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,8 +318,6 @@ Arithmetic
318318

319319
.. function:: void arb_poly_mullow_classical(arb_poly_t C, const arb_poly_t A, const arb_poly_t B, slong n, slong prec)
320320

321-
.. function:: void arb_poly_mullow_ztrunc(arb_poly_t C, const arb_poly_t A, const arb_poly_t B, slong n, slong prec)
322-
323321
.. function:: void arb_poly_mullow_block(arb_poly_t C, const arb_poly_t A, const arb_poly_t B, slong n, slong prec)
324322

325323
.. function:: void arb_poly_mullow(arb_poly_t C, const arb_poly_t A, const arb_poly_t B, slong n, slong prec)

doc/source/contributing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Use the following checklist regarding code style:
2727

2828
* Try to keep names and function arguments consistent with existing code.
2929
* Follow the conventions regarding types, aliasing rules, etc. described
30-
in :ref:`issues` and in ``code_conventions.txt``.
30+
in :ref:`issues` and in ``code_conventions.md``.
3131
* Use basic FLINT constants, types and functions: ``FLINT_BITS``, ``flint_malloc``/``flint_free``, ``flint_abort``, ``flint_printf``, etc.
3232
* Complex macros should be avoided.
3333
* Indentation is four spaces.

doc/source/portability.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ respectively. These are guaranteed to be the same size as GMP's
1212
``mp_limb_t`` and ``mp_limb_signed_t`` types, respectively.
1313

1414
A full list of types provided by FLINT is available in
15-
``code_conventions.txt`` in the top-level source tree.
15+
``code_conventions.md`` in the top-level source tree.
1616

1717
As FLINT supports Windows 64 on which the FLINT ``ulong`` and
1818
``slong`` types are 64 bits, whilst ``unsigned long`` and

src/arb_poly.h

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -239,14 +239,6 @@ arb_poly_scalar_div(arb_poly_t res, const arb_poly_t poly, const arb_t c, slong
239239
_arb_poly_normalise(res);
240240
}
241241

242-
void _arb_poly_mullow_ztrunc(arb_ptr res,
243-
arb_srcptr poly1, slong len1,
244-
arb_srcptr poly2, slong len2, slong n, slong prec);
245-
246-
void arb_poly_mullow_ztrunc(arb_poly_t res, const arb_poly_t poly1,
247-
const arb_poly_t poly2,
248-
slong n, slong prec);
249-
250242
void _arb_poly_mullow_classical(arb_ptr res,
251243
arb_srcptr poly1, slong len1,
252244
arb_srcptr poly2, slong len2, slong n, slong prec);

0 commit comments

Comments
 (0)