Hi Robert and William!

Thanks for your pointers!
devel/sage/sage/graphs seems to be solely dealing with undirected graphs.

What I would really like to have is isomorphisms between colored directed graphs
such as

sage: T = CrystalOfTableaux(['A',2],shape=[2])
sage: T.plot()

or

sage: view(T, pdflatex = True)

More precisely, I would like the explicit isomorphism between the following two
colored directed graphs:

sage: B1 = CrystalOfTableaux(['A',2],shape=[1])
sage: B2 = CrystalOfTableaux(['A',2],shape=[2])
sage: T = TensorProductOfCrystals(B1,B2, 
generators=[[B1.module_generators[0],B2.module_generators[0]]])
sage: TT = TensorProductOfCrystals(B2,B1, 
generators=[[B2.module_generators[0],B1.module_generators[0]]])
sage: view(T, pdflatex = True)
sage: view(TT, pdflatex = True)

or

sage: T.plot()
sage: TT.plot()

if the above does not work. Well and then later between graphs that do not have 
unique sinks anymore.

Is this already possible?

Thanks,

Anne

On 12/16/10 4:43 AM, Robert Miller wrote:
On 16 December 2010 04:36, William Stein<wst...@gmail.com>  wrote:
On Wed, Dec 8, 2010 at 5:24 PM, Anne Schilling<a...@math.ucdavis.edu>  wrote:
William, could you give me a point to Robert Miller's "NICE" package. Where
do
I find information about it?

Please feel free to email me directly with questions!

It's what is used when you call commands like "is_isomorphic",
"canonical_label", "automorphism_group", etc., on any Sage graph.
It's just included in Sage. It's in Cython code in
devel/sage/sage/graphs/.

No it's not. It used to be there, but now it also handles linear
codes, matrices, etc. It is located in sage/groups/perm_gps/partn_ref.

--
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-de...@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