Re: Completly static Laurent's polynomials

2014-01-27 Thread matovitch
I just clone phobos so we could agree about the line numbers : /usr/include/dmd/phobos/std/conv.d(3889): Error: memcpy cannot be interpreted at compile time, because it has no available source code /usr/include/dmd/phobos/std/range.d(4769):called from here: emplace(addr, front(this._ra

Re: Completly static Laurent's polynomials

2014-01-27 Thread matovitch
On Monday, 27 January 2014 at 13:18:06 UTC, Meta wrote: On Monday, 27 January 2014 at 11:15:36 UTC, matovitch wrote: Hello ! Yesterday, I started a project to implement completly static Laurent's polynomials (i.e. polynomials formed by z^n and z^-n monomials). I thought I could repr

Re: Completly static Laurent's polynomials

2014-01-27 Thread Meta
On Monday, 27 January 2014 at 11:15:36 UTC, matovitch wrote: Hello ! Yesterday, I started a project to implement completly static Laurent's polynomials (i.e. polynomials formed by z^n and z^-n monomials). I thought I could represent these polynomials with an immutable range of

Completly static Laurent's polynomials

2014-01-27 Thread matovitch
Hello ! Yesterday, I started a project to implement completly static Laurent's polynomials (i.e. polynomials formed by z^n and z^-n monomials). I thought I could represent these polynomials with an immutable range of Tuple!(numeric_type, int). I've tried (and failed) to imp