Home | Trees | Index | Help |
|
---|
Package young :: Module young :: Class YoungTableaux |
|
object
--+ |dict
--+ | YoungTableaux
Method Summary | |
---|---|
__init__(self,
seq_of_partition)
| |
__iter__(self)
| |
Return the total number of the diagram | |
__repr__(self)
| |
__str__(self)
| |
Formatter for tableaux. | |
calc_square(self)
| |
calc_total(self)
| |
Display all the tableaux | |
Down operation of diagram | |
Return all partitions of the tableaux | |
how many diagrams we have? | |
get_square(self)
| |
refresh values of self.total and self.square | |
Display the statistical info about the tableaux | |
Set the tableaux | |
Return the total number of the diagram | |
Up operation of diagram | |
Inherited from dict | |
x.__cmp__(y) <==> cmp(x,y) | |
D.__contains__(k) -> True if D has a key k, else False | |
x.__delitem__(y) <==> del x[y] | |
x.__eq__(y) <==> x==y | |
x.__ge__(y) <==> x>=y | |
x.__getattribute__('name') <==> x.name | |
x.__getitem__(y) <==> x[y] | |
x.__gt__(y) <==> x>y | |
x.__hash__() <==> hash(x) | |
x.__le__(y) <==> x<=y | |
x.__lt__(y) <==> x<y | |
x.__ne__(y) <==> x!=y | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
x.__setitem__(i, y) <==> x[i]=y | |
D.clear() -> None. | |
D.copy() -> a shallow copy of D | |
D.get(k[,d]) -> D[k] if k in D, else d. | |
D.has_key(k) -> True if D has a key k, else False | |
D.items() -> list of D's (key, value) pairs, as 2-tuples | |
D.iteritems() -> an iterator over the (key, value) items of D | |
D.iterkeys() -> an iterator over the keys of D | |
D.itervalues() -> an iterator over the values of D | |
D.keys() -> list of D's keys | |
If key is not found, d is returned if given, otherwise KeyError is raised | |
2-tuple; but raise KeyError if D is empty | |
D.setdefault(k[,d]) -> D.get(k,d), also set D[k]=d if k not in D | |
D.update(E, **F) -> None. | |
D.values() -> list of D's values | |
Inherited from object | |
x.__delattr__('name') <==> del x.name | |
helper for pickle | |
helper for pickle | |
x.__setattr__('name', value) <==> x.name = value | |
Inherited from type | |
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)
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__
|
seq_of_partition
|
square
|
total
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Wed Dec 08 22:20:20 2004 | http://epydoc.sf.net |