Hey everyone,

Just checking since I haven't followed seriously sage-combinat-devel 
> lately; for the semantic-changing options: 
>
>   +1 on Partitions(order=...) 
>   -1 on Partitions().options(order=...) 
>

   For doing the ordering option, how do we want to compare two elements 
with different ordering on parents? In particular if we do ordering using 
the left argument, we'd have (this is not yet in the queue):

   sage: P = Partitions(order="lex")([3, 3])
   sage: Q = Partitions(order="dominance")([4, 1, 1])
   sage: P < Q
   True # if compared with lex
   sage: Q > P
   False # if compared with dominance

   Should we just return False in both cases or default back to lex 
ordering? The easiest option seems to be is leave it as is, where 
everything using comparison operators is lex and to check dominance, you 
call P.dominate(Q) with large amounts of documentation and warnings about 
this. Thoughts?

Thanks,
Travis

-- 
You received this message because you are subscribed to the Google Groups 
"sage-combinat-devel" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/sage-combinat-devel/-/cok5dxDacBkJ.
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...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.

Reply via email to