/usr/include/eclib/htconst.h is in libec-dev 20160720-2.
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 | // htconst.h: declarations of functions for height bounds
//////////////////////////////////////////////////////////////////////////
//
// 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
//
//////////////////////////////////////////////////////////////////////////
// allow for multiple includes
#ifndef _HTCONST_H_
#define _HTCONST_H_
double silverman_bound(const Curvedata& CD);
double cps_bound(const Curvedata& CD);
inline double height_constant(const Curvedata& CD)
{
// return silverman_bound(CD);
double b1 = silverman_bound(CD), b2 = cps_bound(CD);
return min(b1,b2);
}
double egr_height_constant(const Curvedata& CD);
bigfloat lower_height_bound_alt(const Curvedata& CD);
bigfloat lower_height_bound_search(const Curvedata& CD, const bigfloat& reg);
bigfloat lattice_const(int r);
// returns lower bound for height of non-torsion points of good
// reduction, following Cremona & Siksek in ANTS7
bigfloat egr_lower_height_bound(const Curvedata& CD);
// Class to find point of minimal height by searching.
// If egr_flag is set it ignores points which do not have everywhere
// good reduction (at all finite primes)
class point_min_height_finder : public point_processor {
Curvedata *E;
ComponentGroups CG; // used if egr_flag to test for egr
bigint a1,a2,a3,a4,a6;
vector<bigint> c;
int iso, egr_flag, verbose;
bigfloat min_ht;
Point Pmin;
vector<Point> all_points; //store points found
public:
point_min_height_finder(Curvedata* EE, int egr=0, int verb=0);
~point_min_height_finder() {};
int process(const bigint& x, const bigint& y, const bigint& z);
void search(bigfloat h_lim);
bigfloat get_min_ht() const {return min_ht;}
Point get_min_ht_point() const {return Pmin;}
vector<Point> points() const {return all_points;}
};
// class Interval represents a closed interval [lh,rh] where either
// empty=1; or empty=0 and lh <= rh; flags rhinf, lhinf denote
// rh=infty and lh=-infty resp.
class Interval {
bigfloat lh, rh;
bool empty, lhinf, rhinf;
public:
Interval() : empty(0), lhinf(1), rhinf(1) {show(1);}
Interval(const bigfloat& a, const bigfloat& b)
:lh(a), rh(b), empty(a>b), lhinf(0), rhinf(0) {show(2);}
Interval(const bigfloat& a)
:lh(a), empty(0), lhinf(0), rhinf(1) {show(3);}
Interval(const Interval& I)
:lh(I.lh), rh(I.rh), empty(I.empty), lhinf(I.lhinf), rhinf(I.rhinf) {show(4);}
void operator=(const Interval& I)
{lh=I.lh; rh=I.rh; empty=I.empty; lhinf=I.lhinf; rhinf=I.rhinf;show(5);}
friend ostream& operator<< (ostream&s, const Interval&);
// void show(int i) {cout<<i<<": "<<(*this)<<endl;}
void show(int i) {;}
bool is_empty() const {return empty;}
void intersect(const Interval& I);
friend Interval intersect(const Interval& I, const Interval& J);
};
inline Interval intersect(const Interval& I, const Interval& J)
{
Interval K(I); K.intersect(J); return K;
}
vector<Interval> intersect(const vector<Interval>& L1, const vector<Interval>& L2);
//void output(const vector<Interval>& L);
// class Interval01 represents a closed subinterval [lh,rh] of
// [0,1], where either empty=1; or empty=0 and lh <= rh.
class Interval01 {
bigfloat lh, rh;
bool empty;
public:
Interval01() : lh(to_bigfloat(0)), rh(to_bigfloat(1)), empty(0) {;}
Interval01(const bigfloat& a, const bigfloat& b)
:lh(a), rh(b), empty(a>b) {;}
friend ostream& operator<< (ostream&s, const Interval01&);
// void show(int i) {cout<<i<<": "<<(*this)<<endl;}
void show(int i) {;}
bool is_empty() const {return empty;}
void intersect(const Interval01& I);
friend Interval01 intersect(const Interval01& I, const Interval01& J);
friend Interval01 operator/(const Interval01& I, const long n);
friend Interval01 operator+(const Interval01& I, const bigfloat& shift);
};
inline Interval01 intersect(const Interval01& I, const Interval01& J)
{
Interval01 K(I); K.intersect(J); return K;
}
vector<Interval01> intersect(const vector<Interval01>& L1,
const vector<Interval01>& L2);
vector<long> annihilators(const Curvedata& CD, long n);
// Class to compute lower bound for height of non-torsion points of good
// reduction, following Cremona & Siksek in ANTS7
class CurveHeightConst : public Curvedata, Cperiods {
bigfloat c; // archimidean constribution
bigfloat e3; // largest (or only) real root
bigfloat lower, upper;
int n_max;
int n_ann;
vector<long> ann; // indices of E0/E1 for first few primes
bigfloat D(const long n) const; // "denomContrib"
bigfloat Bnmu(const long n, const bigfloat& mu) const // = B_n(mu)
{ return exp(n*n*mu+c-D(n)); }
int test_target(const bigfloat& target, long k);
vector<Interval> canonicalHeightInterval(const bigfloat& target, long k);
vector<Interval01> canonicalHeightInterval01(const bigfloat& target, long k);
void compute_phase1();
void compute_phase2();
vector<Interval> solveLEQ(long n, const bigfloat& B);
vector<Interval> solveGEQ(long n, const bigfloat& B);
vector<Interval01> solveLEQ01(long n, const bigfloat& B);
vector<Interval01> solveGEQ01(long n, const bigfloat& B);
vector<bigfloat> solveEllNPower(long n, const bigfloat& x1);
vector<bigfloat> solveEllNPower01(long n, const bigfloat& x1);
bigfloat psi(const bigfloat& x);
vector<bigfloat> ordinates(const bigfloat& x);
vector<bigcomplex> ztopoint(const bigcomplex& z)
{return ellztopoint(z,I2bigfloat(a1),I2bigfloat(a2),I2bigfloat(a3));}
bigcomplex pointtoz(const bigfloat& x, const bigfloat& y)
{return ellpointtoz(*this,*this,x,y);}
public:
CurveHeightConst(const Curvedata& CD);
void compute() {compute_phase1(); compute_phase2(); }
bigfloat get_value() const {return lower;}
};
#endif
|