Patch taken from the Sage packaging system. --- lcalc-1.23/include/Lgamma.h 2012-08-08 23:21:55.000000000 +0200 +++ lcalc-1.23/include/Lgamma.h 2014-05-18 21:15:27.786889718 +0200 @@ -77,7 +77,7 @@ //n=0 should just give log_GAMMA(z)... thus making log_GAMMA //code obsolete. But leave log_GAMMA intact anyways. template -precise(ttype) log_GAMMA (ttype z,int n=0) +precise(ttype) log_GAMMA (ttype z,int n) { int M; precise(ttype) log_G,r,r2,y; @@ -230,7 +230,7 @@ //value exp_w which holds exp(-w) //computes G(z,w), so there's an extra w^(-z) factor. template -Complex inc_GAMMA (ttype z,ttype w, const char *method="temme", ttype exp_w = 0, bool recycle=false) +Complex inc_GAMMA (ttype z,ttype w, const char *method, ttype exp_w, bool recycle) { Complex G; @@ -334,7 +334,7 @@ template -ttype cfrac_GAMMA (ttype z,ttype w, ttype exp_w=0, bool recycle=false) //computes G(z,w) via continued fraction +ttype cfrac_GAMMA (ttype z,ttype w, ttype exp_w, bool recycle) //computes G(z,w) via continued fraction { ttype G; @@ -424,7 +424,7 @@ } template -ttype asympt_GAMMA (ttype z,ttype w, ttype exp_w = 0, bool recycle=false) //computes G(z,w) via asymptotic series +ttype asympt_GAMMA (ttype z,ttype w, ttype exp_w, bool recycle) //computes G(z,w) via asymptotic series { if(my_verbose>3) cout << "called asympt_GAMMA("< -ttype comp_inc_GAMMA (ttype z,ttype w,ttype exp_w = 0, bool recycle=false) //computes g(z,w) +ttype comp_inc_GAMMA (ttype z,ttype w,ttype exp_w, bool recycle) //computes g(z,w) { ttype g; @@ -604,7 +604,7 @@ } template -Complex gamma_sum(Complex s, int what_type, ttype *coeff, int N, Double g, Complex l, Double Q, Long Period, Complex delta=1, const char *method="temme") +Complex gamma_sum(Complex s, int what_type, ttype *coeff, int N, Double g, Complex l, Double Q, Long Period, Complex delta, const char *method) { Complex SUM=0; e4344d2e20b7e306cd39'>root/etc/snippets/scheme-mode
AgeCommit message (Expand)Author
2019-05-09Add (guix bzr-download)....* guix/bzr-download.scm, guix/build/bzr.scm, etc/snippets/scheme-mode/guix-bzr-reference: New files. * Makefile.am (MODULES): Add them. * etc/snippets/scheme-mode/guix-origin: Add "bzr-fetch" to the origin choices. Maxim Cournoyer
2018-10-10etc: Use git-file-name if origin is git-fetch....* etc/snippets/scheme-mode/guix-origin: Use git-file-name. Pierre Neidhardt
2018-07-13etc: snippets: Add new build systems to package snippet....* etc/snippets/scheme-mode/guix-package: Add android-ndk-build-system and scons-build-system as possibilities for the build-system field. Arun Isaac
2017-12-15etc: Add snippets....* etc/snippets/scheme-mode/guix-cvs-reference, etc/snippets/scheme-mode/guix-git-reference, etc/snippets/scheme-mode/guix-hg-reference, etc/snippets/scheme-mode/guix-origin, etc/snippets/scheme-mode/guix-package, etc/snippets/scheme-mode/guix-svn-reference, etc/snippets/text-mode/guix-commit-message-add-package, etc/snippets/text-mode/guix-commit-message-update-package: New files. * doc/contributing.texi (The Perfect Setup): Document snippets. Ricardo Wurmus