[sage-combinat-devel] Re: (free) algebras

2011-03-26 Thread Simon King
On 27 Mrz., 08:11, Simon King wrote: > I guess, what I should do is to test at the beginning of the > groebner_basis method whether we have a field, and give a clear error > message. Also I should mention that restriction in the doc string of > the groebner_basis method. Udate done. But no rebas

[sage-combinat-devel] Re: (free) algebras

2011-03-26 Thread Simon King
Hi Anne, On 27 Mrz., 00:39, Anne Schilling wrote: > Hi Simon, > > I am not sure this is the smallest example, but I get some error messages when > playing with the quotients: > > sage: n=3 > sage: F = FreeAlgebra(ZZ,n,'x',implementation='letterplace') That's the other restriction (besides homege

Re: [sage-combinat-devel] Re: (free) algebras

2011-03-26 Thread Anne Schilling
Hi Simon, I am not sure this is the smallest example, but I get some error messages when playing with the quotients: sage: n=3 sage: F = FreeAlgebra(ZZ,n,'x',implementation='letterplace') sage: x = F.gens() sage: rel = [x[(i+1)%n]*x[i]*x[i]-x[i]*x[(i+1)%n]*x[i] for i in range(n)] sage: rel += [

Re: [sage-combinat-devel] Re: (free) algebras

2011-03-26 Thread Nicolas M. Thiery
On Sat, Mar 26, 2011 at 09:23:04AM -0700, Simon King wrote: > I'll probably be not able to rebase it until Monday, but if you like, > you can rebase it. Ok. I'll try to do that tonight. Otherwise tomorrow evening. > Concerning the methods discussed here: For the current version of the > patch, I

[sage-combinat-devel] Re: (free) algebras

2011-03-26 Thread Simon King
Hi Anne, hi Nicolas, On 26 Mrz., 15:30, Anne Schilling wrote: > >> Could you then rebase trac7797 so that it is easier to use it in the > >> sage-combinat queue? I added it there, but it is currently disabled. > > > Ok, as soon as I get Simon's green light. > > Sounds good! Simon, can we rebased

Re: [sage-combinat-devel] Re: (free) algebras

2011-03-26 Thread Anne Schilling
On 3/26/11 7:06 AM, Nicolas M. Thiery wrote: On Sat, Mar 26, 2011 at 06:11:44AM -0700, Anne Schilling wrote: I just review #10961, but unfortunately could not give it a positive review due to a typo in the doc test (the tests do not pass). Once that is fixed I am happy to give a positive review.

Re: [sage-combinat-devel] Re: (free) algebras

2011-03-26 Thread Anne Schilling
Hi Simon, One advantage of having a similar set up to AlgebrasWithBasis would be the following commands which are often quite useful: sage: G = AlgebrasWithBasis(ZZ).example() sage: G An example of an algebra with basis: the free algebra on the generators ('a', 'b', 'c') over Integer

Re: [sage-combinat-devel] Re: (free) algebras

2011-03-26 Thread Nicolas M. Thiery
On Sat, Mar 26, 2011 at 06:11:44AM -0700, Anne Schilling wrote: > I just review #10961, but unfortunately could not give it a positive review > due to a typo in the doc test (the tests do not pass). Once that is fixed > I am happy to give a positive review. Done. Thanks > Could you then rebase tr

Re: [sage-combinat-devel] Re: (free) algebras

2011-03-26 Thread Anne Schilling
Hi Nicolas and Simon, On Fri, Mar 25, 2011 at 05:37:41AM -0700, Anne Schilling wrote: Nicolas, I wanted to add the patch trac7797-full_letterplace_wrapper.patch to the sage-combinat queue to test it, but it does not commute with your patch trac_10961-lie_bracket_in_rings-nt.patch. Would it be p

Re: [sage-combinat-devel] Re: (free) algebras

2011-03-26 Thread Nicolas M. Thiery
On Sat, Mar 26, 2011 at 06:00:50AM -0700, Simon King wrote: > Thank you! That was what I was looking for. Indeed, that's one of the first tutorial we run during our Sage-Combinat days :-) We really need to get our collection of tutorials in Sage. There are just some Sphinx technicalities that we

[sage-combinat-devel] Re: (free) algebras

2011-03-26 Thread Simon King
Hi Nicolas, On 26 Mrz., 11:59, "Nicolas M. Thiery" wrote: > ... > Very short answer for the moment: I should have pointed you to the > upcoming tutorial: > > http://combinat.sagemath.org/doc/reference/demos/tutorial-using-free-... Thank you! That was what I was looking for. Some comments: I wou

Re: [sage-combinat-devel] Re: (free) algebras

2011-03-26 Thread Nicolas M. Thiery
On Sat, Mar 26, 2011 at 03:00:10AM -0700, Simon King wrote: > On 26 Mrz., 08:03, "Nicolas M. Thiery" > wrote: > > What's the category for F? It would be great if it was in > > AlgebrasWithBasis, and in particular if CombinatorialFreeModule and > > FreeAlgebra would be consistent with each other (i

[sage-combinat-devel] Re: (free) algebras

2011-03-26 Thread Simon King
Hi Nicolas, On 26 Mrz., 11:00, Simon King wrote: > Sorry, I first saw your post on sage-algebra and answered there, > although it might have been better to do it on combinat-devel. Anyway, > I am very unhappy with the documentation of the "...WithBasis" stuff. > After several attempts, I still do

[sage-combinat-devel] Re: (free) algebras

2011-03-26 Thread Simon King
Hi Nicolas, On 26 Mrz., 08:03, "Nicolas M. Thiery" wrote: > What's the category for F? It would be great if it was in > AlgebrasWithBasis, and in particular if CombinatorialFreeModule and > FreeAlgebra would be consistent with each other (in particular for the > accessors on elements). The role o

Re: [sage-combinat-devel] Re: (free) algebras

2011-03-26 Thread Anne Schilling
Hi Simon, Great! This works now. I'll play around with your patch and will report later. Cheers, Anne On 3/25/11 11:05 AM, Simon King wrote: Hi! I got it! On 25 Mrz., 18:59, Simon King wrote: $ ls sage/algebras/letterplace/ free_algebra_element_letterplace.pxd free_algebra_letterplace.py

Re: [sage-combinat-devel] Re: #7922 reviewer's patch

2011-03-26 Thread Nicolas M. Thiery
Hi Dan! On Thu, Mar 24, 2011 at 11:39:49AM -0700, Daniel Bump wrote: > These are now imported. > > > By the way, looking at your revision patch made me wonder whether > > coerce_to_sl and friends should not be a method of the elements of the > > ambient space rather than of the ambient sp

Re: [sage-combinat-devel] Re: (free) algebras

2011-03-26 Thread Nicolas M. Thiery
Hi Simon, This is beautiful! Thanks for your (and Singular)'s hard work on this! What's the category for F? It would be great if it was in AlgebrasWithBasis, and in particular if CombinatorialFreeModule and FreeAlgebra would be consistent with each other (in particular for the accessors o