Differences between revisions 34 and 50 (spanning 16 versions)
Revision 34 as of 2011-05-06 17:49:39
Size: 1012
Comment:
Revision 50 as of 2012-05-03 16:24:44
Size: 546
Editor: saliola
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
def quantum_grassmannian_poset(p,m,k):
    p=Partition(p)
    D=DiGraph()
    D.add_vertex(p)
    queue=[p]
    seen={p:0}
    while queue:
        p=queue.pop()
        if seen[p]==m+k-1:
            continue
        if p==[]:
            up_list=[Partition([1])]
        else:
            up_list=p.up_list()
        for q in up_list:
            s=SkewPartition([q,p])
            r=s.cells()
            u=[q.content(*t)+k%(m+k) for t in r]
            new_edge=False
            if q.arm_length(0,0) <= m-1 and q.length() <= k:
                new_edge=True
            if q.arm_length(0,0) == m-1 and q.length() == k+1:
                new_edge=True
                cells = q.rim()
                for c in cells:
                    q = q.remove_cell(c[0])
            if new_edge is True:
                D.add_edge(p,q,u[0])
                if q not in seen:
                    seen[q]=seen[p]+1
                    queue.append(q)
    return D
{{{#!rst

Sage Days 38 Coding Sprint Projects
===================================

**For the main Sage Days 38 wiki page go** `here`__.

__ days38

Below is a list of proposed projects.

Combinatorics
-------------

Representation Theory
---------------------

* Sage interface to QPA_ (`sourceforge page`__)

__ http://www.math.ntnu.no/~oyvinso/QPA/
.. _QPA: http://sourceforge.net/projects/quiverspathalg/


Documentation
-------------

* quick reference card for combinatorics/sage-combinat (see `quickref`_)

}}}

Sage Days 38 Coding Sprint Projects

For the main Sage Days 38 wiki page go here.

Below is a list of proposed projects.

Combinatorics

Representation Theory

Documentation

  • quick reference card for combinatorics/sage-combinat (see quickref)

days30_projects (last edited 2012-05-03 16:29:14 by saliola)