Re: [sage-devel] question about calculus/riemann.pyx extension

2010-10-26 Thread François Bissey
Note that fs in the example is a list of length 1. David snip which suggests that fs should instead be an array. If I try to go through the steps of the initialization process by hand using the data from the test I get error messages: sage: import sage.calculus.riemann sage: fs

Re: [sage-devel] question about calculus/riemann.pyx extension

2010-10-26 Thread David Roe
On Tue, Oct 26, 2010 at 04:03, François Bissey f.r.bis...@massey.ac.nzwrote: Note that fs in the example is a list of length 1. David snip which suggests that fs should instead be an array. If I try to go through the steps of the initialization process by hand using the data

[sage-devel] question about calculus/riemann.pyx extension

2010-10-25 Thread François Bissey
Hi, I am looking at the code and tests for the class Riemann_Map in calculus/riemann.pyx and I have a hard time understanding how it can be working at all. The init method starts with: def __init__(self, fs, fprimes, a, int N=500, int ncorners=4, opp=False): Initializes

Re: [sage-devel] question about calculus/riemann.pyx extension

2010-10-25 Thread David Roe
Note that fs in the example is a list of length 1. David On Mon, Oct 25, 2010 at 23:14, François Bissey f.r.bis...@massey.ac.nzwrote: Hi, I am looking at the code and tests for the class Riemann_Map in calculus/riemann.pyx and I have a hard time understanding how it can be working at all.