/usr/include/eclib/periods.h is in libec-dev 20160101-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | // periods.h : class for integrating newforms
//////////////////////////////////////////////////////////////////////////
//
// Copyright 1990-2012 John Cremona
//
// This file is part of the eclib package.
//
// eclib is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by the
// Free Software Foundation; either version 2 of the License, or (at your
// option) any later version.
//
// eclib is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
// for more details.
//
// You should have received a copy of the GNU General Public License
// along with eclib; if not, write to the Free Software Foundation,
// Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
//
//////////////////////////////////////////////////////////////////////////
#ifndef _PERIODS_H
#define _PERIODS_H 1
#define PI Pi()
//#ifndef TWOPI
//#define TWOPI ((2*PI))
//#endif
//#ifndef LOG10
#define LOG10 log(10)
//#endif
const bigfloat eps = to_bigfloat(1.0e-16); // ?? mindouble;
#define EULERGAMMA Euler()
bigfloat myg0(bigfloat x);
bigfloat myg1(bigfloat x);
bigfloat myg2(bigfloat x);
bigfloat myg3(bigfloat x);
class character {
private:
long modul;
int *chartable;
void init();
public:
character(long m=1);
~character();
void reset(long m);
long modulus(void) {return modul;}
int operator()(long n) {return chartable[n%modul];}
};
class summer {
protected:
bigfloat sum1, sum2; // sum2 not necessarily used
long limit, limit1, limit2;
bigfloat rootlimit, rootmod, factor, factor1, factor2, rp, ip;
long type;
long N, nap; vector<long> aplist; vector<long> primelist;
vector<long> an_cache; // holds a_n for n up to rootlimit
vector<long> a2p_cache; // holds a_n for n=2^e up to rootlimit
vector<long> a3p_cache; // holds a_n for n=3^e up to rootlimit
vector<long> a5p_cache; // holds a_n for n=5^e up to rootlimit
vector<long> a7p_cache; // holds a_n for n=7^e up to rootlimit
long n2p,n3p,n5p,n7p;
void initaplist(const level* iN, const vector<long>& apl);
virtual bigfloat func1(long n) {return to_bigfloat(0);}
virtual bigfloat func2(long n) {return to_bigfloat(0);}
virtual void use(long n, long an)=0;
void use1(long n, long an);
void use2(long n, long an);
void use2357(long n, long an);
void add(long n, long pindex, long y, long z);
void add2357(long n, long pindex, long y, long z);
void sumit(void); // do the sum
public:
virtual ~summer() {;}
virtual void compute(void)=0; // ditto with pre and post-processing
bigfloat rper(void) {return rp;}
bigfloat iper(void) {return ip;}
Cperiods getperiods() {Cperiods per(rp,ip,type); return per;}
};
class periods_via_lfchi :public summer {
private:
character chi1, chi2;
long mplus, mminus, dp0;
void use(long n, long an) {use2(n,an);}
bigfloat func1(long n) { return to_bigfloat(chi1(n)) * pow(factor1,to_bigfloat(n)); }
bigfloat func2(long n) { return to_bigfloat(chi2(n)) * pow(factor2,to_bigfloat(n)); }
public:
periods_via_lfchi (const level* iN, const newform* f);
void compute(void);
};
class periods_direct :public summer {
private:
long eps_N, a, b, c, d;
bigfloat theta1,theta2;
vector<bigfloat> ctab, stab; // array of cos(j*2*pi/d), sin(j*2*pi/d), for j mod d
void use(long n, long an);
public:
periods_direct (const level* iN, const newform* f);
void compute(void);
void compute(long ta, long tb, long tc, long td);
// period of (a,b;Nc,d) in Gamma_0(N)
};
class part_period :public summer {
private:
bigfloat efactor,x0,y0,xn;
bigfloat func1(long n) { xn=to_bigfloat(n); efactor = exp(-xn*y0);
return efactor*cos(xn*x0); }
bigfloat func2(long n) { return efactor*sin(xn*x0); }
void use(long n, long an) {use2(n,an);}
public:
part_period (const level* iN, const newform* f);
~part_period () {;}
void compute(const bigcomplex& z0);
void compute();
bigcomplex getperiod() {return bigcomplex(rp,ip);}
};
bigfloat G(int r, bigfloat x); // G_r(x)
class ldash1 : public summer {
private:
long r;
int computed;
bigfloat ld1;
bigfloat G(bigfloat x); // G_r(x)
void init(const level* N, const vector<long>& f_aplist, long f_sfe, const rational& f_loverp);
void use(long n, long an) {use1(n,an);}
bigfloat func1(long n) { return -G(factor1*to_bigfloat(n)); }
public:
ldash1 (const level* iN, const newform* f);
ldash1 (const newforms* nf, long i); // the i'th newform
void compute(void);
long rank() {compute(); return r;}
bigfloat value() {compute(); return ld1;}
//
// NB this value is equal to r!*L^{(r)}(f,1) -- note the r! factor!
//
};
class lfchi : public summer {
private:
long limit0;
bigfloat val;
character chi;
bigfloat func1(long n) { return chi(n)*pow(factor1,to_bigfloat(n));}
void use(long n, long an) {use1(n,an);}
public:
lfchi (const level* iN, const newform* f);
void compute(long ell);
void compute(void) {;} // not called but has to exist;
bigfloat value(void) {return val;}
bigfloat scaled_value(void) {return sqrt(to_bigfloat(chi.modulus()))*val;}
};
vector<long> resort_aplist(const level* iN,
const vector<long>& primelist,
const vector<long>& apl);
#endif
|