Package young :: Module young :: Class YoungTableaux
[show private | hide private]
[frames | no frames]

Type YoungTableaux

object --+    
         |    
      dict --+
             |
            YoungTableaux


This class holds a sequence of Tableaux
Method Summary
  __init__(self, seq_of_partition)
  __iter__(self)
  __len__(self)
Return the total number of the diagram
  __repr__(self)
  __str__(self)
  _formatter(self)
Formatter for tableaux.
  calc_square(self)
  calc_total(self)
  display(self)
Display all the tableaux
  down(self)
Down operation of diagram
  get_partition(self)
Return all partitions of the tableaux
  get_size_by_hook(self)
how many diagrams we have?
  get_square(self)
  refresh(self)
refresh values of self.total and self.square
  report(self)
Display the statistical info about the tableaux
  set_tableaux(self)
Set the tableaux
  size(self)
Return the total number of the diagram
  up(self)
Up operation of diagram
    Inherited from dict
  __cmp__(x, y)
x.__cmp__(y) <==> cmp(x,y)
  __contains__(D, k)
D.__contains__(k) -> True if D has a key k, else False
  __delitem__(x, y)
x.__delitem__(y) <==> del x[y]
  __eq__(x, y)
x.__eq__(y) <==> x==y
  __ge__(x, y)
x.__ge__(y) <==> x>=y
  __getattribute__(...)
x.__getattribute__('name') <==> x.name
  __getitem__(x, y)
x.__getitem__(y) <==> x[y]
  __gt__(x, y)
x.__gt__(y) <==> x>y
  __hash__(x)
x.__hash__() <==> hash(x)
  __le__(x, y)
x.__le__(y) <==> x<=y
  __lt__(x, y)
x.__lt__(y) <==> x<y
  __ne__(x, y)
x.__ne__(y) <==> x!=y
  __new__(T, S, ...)
T.__new__(S, ...) -> a new object with type S, a subtype of T
  __setitem__(x, i, y)
x.__setitem__(i, y) <==> x[i]=y
  clear(D)
D.clear() -> None.
  copy(D)
D.copy() -> a shallow copy of D
  get(D, k, d)
D.get(k[,d]) -> D[k] if k in D, else d.
  has_key(D, k)
D.has_key(k) -> True if D has a key k, else False
  items(D)
D.items() -> list of D's (key, value) pairs, as 2-tuples
  iteritems(D)
D.iteritems() -> an iterator over the (key, value) items of D
  iterkeys(D)
D.iterkeys() -> an iterator over the keys of D
  itervalues(D)
D.itervalues() -> an iterator over the values of D
  keys(D)
D.keys() -> list of D's keys
  pop(D, k, d)
If key is not found, d is returned if given, otherwise KeyError is raised
  popitem(D)
2-tuple; but raise KeyError if D is empty
  setdefault(D, k, d)
D.setdefault(k[,d]) -> D.get(k,d), also set D[k]=d if k not in D
  update(...)
D.update(E, **F) -> None.
  values(D)
D.values() -> list of D's values
    Inherited from object
  __delattr__(...)
x.__delattr__('name') <==> del x.name
  __reduce__(...)
helper for pickle
  __reduce_ex__(...)
helper for pickle
  __setattr__(...)
x.__setattr__('name', value) <==> x.name = value
    Inherited from type
  fromkeys(dict, S, v)
v defaults to None.

Class Variable Summary
tuple __slots__ = ('total', 'square', 'seq_of_partition')
member_descriptor seq_of_partition = <member 'seq_of_partition' of 'YoungT...
member_descriptor square = <member 'square' of 'YoungTableaux' objects>
member_descriptor total = <member 'total' of 'YoungTableaux' objects>

Method Details

__len__(self)
(Length operator)

Return the total number of the diagram

_formatter(self)

Formatter for tableaux. return as a generator.

display(self)

Display all the tableaux

down(self)

Down operation of diagram

get_partition(self)

Return all partitions of the tableaux

get_size_by_hook(self)

how many diagrams we have?

refresh(self)

refresh values of self.total and self.square

report(self)

Display the statistical info about the tableaux

set_tableaux(self)

Set the tableaux

size(self)

Return the total number of the diagram

up(self)

Up operation of diagram

Class Variable Details

__slots__

Type:
tuple
Value:
('total', 'square', 'seq_of_partition')                                

seq_of_partition

Type:
member_descriptor
Value:
<member 'seq_of_partition' of 'YoungTableaux' objects>                 

square

Type:
member_descriptor
Value:
<member 'square' of 'YoungTableaux' objects>                           

total

Type:
member_descriptor
Value:
<member 'total' of 'YoungTableaux' objects>                            

Generated by Epydoc 2.1 on Wed Dec 08 22:20:20 2004 http://epydoc.sf.net