From cf174ad64fc9f9f37193b573849040b5780bdae5 Mon Sep 17 00:00:00 2001 From: Joel Dahne Date: Mon, 20 Dec 2021 20:06:40 -0500 Subject: [PATCH 1/2] Minor fixes to documentation --- doc/source/acb.rst | 2 +- doc/source/arb_hypgeom.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/acb.rst b/doc/source/acb.rst index 58a3f6af..0aaf5063 100644 --- a/doc/source/acb.rst +++ b/doc/source/acb.rst @@ -868,7 +868,7 @@ Lambert W function Rising factorials ------------------------------------------------------------------------------- -.. function:: void acb_rising_ui(acb_t z, const acb_t x, const acb_t n, slong prec) +.. function:: void acb_rising_ui(acb_t z, const acb_t x, ulong n, slong prec) void acb_rising(acb_t z, const acb_t x, const acb_t n, slong prec) Computes the rising factorial `z = x (x+1) (x+2) \cdots (x+n-1)`. diff --git a/doc/source/arb_hypgeom.rst b/doc/source/arb_hypgeom.rst index 4112e0d0..4d7c683c 100644 --- a/doc/source/arb_hypgeom.rst +++ b/doc/source/arb_hypgeom.rst @@ -95,7 +95,7 @@ Gamma function series together with argument reduction. If *reciprocal* is set, the reciprocal gamma function is computed instead. -.. function:: int arb_hypgeom_gamma_taylor(arb_t res, const arb_t x,int reciprocal, slong prec) +.. function:: int arb_hypgeom_gamma_taylor(arb_t res, const arb_t x, int reciprocal, slong prec) Attempts to compute the gamma function of *x* using Taylor series together with argument reduction. This is only supported if *x* and *prec* From 3e6b8b56954be31c31fa66c6fa7036965f115dc8 Mon Sep 17 00:00:00 2001 From: Isuru Fernando Date: Tue, 21 Dec 2021 07:57:36 +0530 Subject: [PATCH 2/2] update conda location in appveyor --- appveyor.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 43849350..4799fd51 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -16,14 +16,14 @@ skip_commits: environment: global: - CONDA_INSTALL_LOCN_32: "C:\\Miniconda36" - CONDA_INSTALL_LOCN_64: "C:\\Miniconda36-x64" + CONDA_INSTALL_LOCN_32: "C:\\Miniconda37" + CONDA_INSTALL_LOCN_64: "C:\\Miniconda37-x64" VCVARSALL: "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\VC\\Auxiliary\\Build\\vcvarsall.bat" matrix: - - COMPILER: gcc - ARCH: 64 - COMPILER: cl ARCH: 64 + - COMPILER: gcc + ARCH: 64 - COMPILER: gcc ARCH: 32 # - COMPILER: cl