Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
src/sage/libs/lcalc/lcalc_Lfunction.pxd: Add missing cdef method decl…
Browse files Browse the repository at this point in the history
…arations
  • Loading branch information
Matthias Koeppe committed Jul 25, 2022
1 parent 02ce997 commit fd2e122
Showing 1 changed file with 31 additions and 4 deletions.
35 changes: 31 additions & 4 deletions src/sage/libs/lcalc/lcalc_Lfunction.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -115,14 +115,41 @@ cdef class Lfunction:

cdef str _repr


cdef class Lfunction_I(Lfunction):
pass
cdef void __init_fun(self, char *NAME, int what_type, dirichlet_coeff, long long Period, double q, c_Complex w, int A, double *g, c_Complex *l, int n_poles, c_Complex *p, c_Complex *r)
cdef inline c_Complex __value(self,c_Complex s,int derivative)
cdef inline c_Complex __hardy_z_function(self,c_Complex s)
cdef int __compute_rank(self)
cdef void __find_zeros_v(self, double T1, double T2, double stepsize, doublevec *result)
cdef double __typedN(self, double T)
cdef int __find_zeros(self, long count, long start, double max_refine, int rank, const char* message_stamp, doublevec *result)


cdef class Lfunction_D(Lfunction):
pass
cdef void __init_fun(self, char *NAME, int what_type, dirichlet_coeff, long long Period, double q, c_Complex w, int A, double *g, c_Complex *l, int n_poles, c_Complex *p, c_Complex *r)
cdef inline c_Complex __value(self,c_Complex s,int derivative)
cdef inline c_Complex __hardy_z_function(self,c_Complex s)
cdef inline int __compute_rank(self)
cdef void __find_zeros_v(self, double T1, double T2, double stepsize, doublevec *result)
cdef double __typedN(self, double T)
cdef int __find_zeros(self, long count, long start,double max_refine, int rank, const char* message_stamp, doublevec *result)


cdef class Lfunction_C(Lfunction):
pass
cdef void __init_fun(self, char *NAME, int what_type, dirichlet_coeff, long long Period, double q, c_Complex w, int A, double *g, c_Complex *l, int n_poles, c_Complex *p, c_Complex *r)
cdef inline c_Complex __value(self,c_Complex s,int derivative)
cdef inline c_Complex __hardy_z_function(self,c_Complex s)
cdef inline int __compute_rank(self)
cdef void __find_zeros_v(self, double T1, double T2, double stepsize, doublevec *result)
cdef double __typedN(self, double T)
cdef int __find_zeros(self, long count, long start, double max_refine, int rank, const char* message_stamp, doublevec *result)


cdef class Lfunction_Zeta(Lfunction):
pass
cdef inline c_Complex __value(self,c_Complex s,int derivative)
cdef inline c_Complex __hardy_z_function(self,c_Complex s)
cdef inline int __compute_rank(self)
cdef void __find_zeros_v(self, double T1, double T2, double stepsize, doublevec *result)
cdef double __typedN(self, double T)
cdef int __find_zeros(self, long count, long start, double max_refine, int rank, const char* message_stamp, doublevec *result)

0 comments on commit fd2e122

Please sign in to comment.