[sage-combinat-devel] Re: #8327 Implement the universal cyclotomic field, using Zumbroich basis

2010-06-08 Thread Christian Stump
Another question I just thought about was: Do we want: 1. every element in the universal cyclotomic field living in exactly one cyclotomic field QQ( \zeta_n ) generated by ZumbroichBasis(n,1) for some n, or 2. can an element have several monomials living in different cyclotomic fields. In gap,

[sage-combinat-devel] Lazy Family membership check

2010-06-08 Thread Christian Stump
Hi all, is it on purpose that the method LazyFamily does not check membership when calling __getitem__? sage: a = Family( range(10), lambda i:i+2) sage: a[4] 6 sage: a[100] KeyError: 100 sage: b = Family( range(10), lambda i:i+2, lazy=True) sage: b[4] 6 sage: b[100] 102 Do you also think that

[sage-devel] Lazy Family membership check

2010-06-08 Thread Christian Stump
Hi all, is it on purpose that the method LazyFamily does not check membership when calling __getitem__? sage: a = Family( range(10), lambda i:i+2) sage: a[4] 6 sage: a[100] KeyError: 100 sage: b = Family( range(10), lambda i:i+2, lazy=True) sage: b[4] 6 sage: b[100] 102 Do you also think that

[sage-combinat-devel] #8327 Implement the universal cyclotomic field, using Zumbroich basis

2010-06-07 Thread Christian Stump
a UniversalCyclotomicField containing NewCyclotomicField(n) for all n? Would be nice if someone could help me with some of those issues (or provide a link to solutions). Thanks, Christian Stump -- You received this message because you are subscribed to the Google Groups sage-combinat-devel group. To post

[sage-combinat-devel] Re: #8327 Implement the universal cyclotomic field, using Zumbroich basis

2010-06-07 Thread Christian Stump
I added a new version of the file zumbroich.sage to ticket #8327. -- You received this message because you are subscribed to the Google Groups sage-combinat-devel group. To post to this group, send email to sage-combinat-de...@googlegroups.com. To unsubscribe from this group, send email to

<    1   2   3   4   5