[sage-combinat-devel] Re: [wst...@math.washington.edu: [sage-combinat-commits] [Sage] #13688: FiniteEnumeratedSets cardinality override]

2012-11-05 Thread Travis Scrimshaw
Hey Nicolas, On Monday, November 5, 2012 3:10:11 PM UTC-8, Nicolas M. Thiery wrote: > > Hi Travis! > > Answering on sage-combinat-devel since trac access is to slow from > here. > > - Forwarded message from Sage > > - > Right now the category `FiniteEnumeratedSets` overri

[sage-combinat-devel] [wst...@math.washington.edu: [sage-combinat-commits] [Sage] #13688: FiniteEnumeratedSets cardinality override]

2012-11-05 Thread Nicolas M. Thiery
Hi Travis! Answering on sage-combinat-devel since trac access is to slow from here. - Forwarded message from Sage - Right now the category `FiniteEnumeratedSets` overrides a parent class's `cardinality()` when creating a list. Below is a minimal example of this behavior:

Re: [sage-combinat-devel] sage-combinat repo is still down

2012-11-05 Thread Christian Stump
> I fixed combinat. Thanks a lot! -- 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-devel@googlegroups.com. To unsubscribe from this group, send email to sage-combinat-devel+unsubscr...@g

Re: [sage-combinat-devel] sage-combinat repo is still down

2012-11-05 Thread William Stein
Hi, I fixed combinat. It had not crashed, but something was amis with the networking. I restarted the network interface, and most things worked, but I couldn't get /home to properly remount over NFS. So I applied a bunch of OS updates, many involving networking, rebooted (for the first time

Re: [sage-combinat-devel] Partition options and cleanup patch

2012-11-05 Thread Anne Schilling
On 11/5/12 6:50 AM, Nicolas M. Thiery wrote: > On Mon, Nov 05, 2012 at 03:15:35PM +0100, Vincent Delecroix wrote: >>> Granted: there should be an abstract class for word-like objects (or >>> more possibly generally objects with labels), and this method should >>> be implemented there. But in the me

Re: [sage-combinat-devel] Re: Global options for elements set by their parents

2012-11-05 Thread Nicolas M. Thiery
On Wed, Oct 31, 2012 at 12:12:14AM -0700, Andrew Mathas wrote: >As a follow-up, since Nicolas suggested that what I was proposing looked >more like options for arbitrary sage objects, so I experimented with >adding my options method to SageObject. Cool >Even though SageObject is i

Re: [sage-combinat-devel] sage-combinat repo is still down

2012-11-05 Thread William Stein
On Mon, Nov 5, 2012 at 7:18 AM, Christian Stump wrote: > Hi all, > > any idea what the problem with the sage-combinat repository is, or > when it will be alive again? > It looks like the machine is firewall'ing itself, yet again, for no apparent reason, or ssh got killed: wstein@sage:~$ ping com

Re: [sage-combinat-devel] Global options for elements set by their parents

2012-11-05 Thread Nicolas M. Thiery
On Sun, Oct 28, 2012 at 06:50:19PM -0700, Travis Scrimshaw wrote: >On Sunday, October 28, 2012 2:13:07 AM UTC-7, Andrew Mathas wrote: >Not OK (this could break e.g. Symmetric Functions): > >sage: Partitions().options(cmp=dominance) > > In his patch Travis has an o

[sage-combinat-devel] sage-combinat repo is still down

2012-11-05 Thread Christian Stump
Hi all, any idea what the problem with the sage-combinat repository is, or when it will be alive again? Thanks, Christian -- 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-devel@googlegro

Re: [sage-combinat-devel] Re: Global options for elements set by their parents

2012-11-05 Thread Nicolas M. Thiery
On Wed, Oct 31, 2012 at 05:39:06PM -0700, Andrew Mathas wrote: >I think that the problem is that when sage creates a class then it creates >copies in memory of all of the (inherited) methods of the class. Not exactly. What happens is that, for P a parent (here P=Tableaux), the class P.elem

Re: [sage-combinat-devel] Partition options and cleanup patch

2012-11-05 Thread Nicolas M. Thiery
On Mon, Nov 05, 2012 at 03:15:35PM +0100, Vincent Delecroix wrote: > > Granted: there should be an abstract class for word-like objects (or > > more possibly generally objects with labels), and this method should > > be implemented there. But in the mean time just leave it there. > > Note that the

Re: [sage-combinat-devel] Partition options and cleanup patch

2012-11-05 Thread Vincent Delecroix
> Granted: there should be an abstract class for word-like objects (or > more possibly generally objects with labels), and this method should > be implemented there. But in the mean time just leave it there. Note that the terminology is not uniform. Among others * evaluation * Parikh vector * A

Re: [sage-combinat-devel] Partition options and cleanup patch

2012-11-05 Thread Nicolas M. Thiery
Hi Travis! On Fri, Nov 02, 2012 at 07:45:35PM -0700, Travis Scrimshaw wrote: >+1 on Partitions(order=...) >-1 on Partitions().options(order=...) > >I'm currently planning on changing it to the first way. Thanks! > >- Deprecating the following methods and cla