@@ -211,6 +211,24 @@ class RiggedConfigurations(Parent, UniqueRepresentation):
211
211
If on the other hand we also want to specify the riggings, this can be
212
212
achieved as follows::
213
213
214
+ sage: RC = RiggedConfigurations(['A', 3, 1], [[3, 2], [1, 2], [1, 1]])
215
+ sage: RC(partition_list=[[2],[2],[2]])
216
+ <BLANKLINE>
217
+ 1[ ][ ]1
218
+ <BLANKLINE>
219
+ 0[ ][ ]0
220
+ <BLANKLINE>
221
+ 0[ ][ ]0
222
+ sage: RC(partition_list=[[2],[2],[2]], rigging_list=[[0],[0],[0]])
223
+ <BLANKLINE>
224
+ 1[ ][ ]0
225
+ <BLANKLINE>
226
+ 0[ ][ ]0
227
+ <BLANKLINE>
228
+ 0[ ][ ]0
229
+
230
+ A larger example::
231
+
214
232
sage: RC = RiggedConfigurations(['D', 7, 1], [[3,3],[5,2],[4,3],[2,3],[4,4],[3,1],[1,4],[2,2]])
215
233
sage: elt = RC(partition_list=[[2],[3,2,1],[2,2,1,1],[2,2,1,1,1,1],[3,2,1,1,1,1],[2,1,1],[2,2]],
216
234
....: rigging_list=[[2],[1,0,0],[4,1,2,1],[1,0,0,0,0,0],[0,1,0,0,0,0],[0,0,0],[0,0]])
@@ -337,33 +355,17 @@ def __init__(self, cartan_type, B):
337
355
338
356
EXAMPLES::
339
357
340
- sage: RC = RiggedConfigurations(['A', 3, 1], [[3, 2], [1, 2], [1, 1]])
341
- sage: RC(partition_list=[[2],[2],[2]])
342
- <BLANKLINE>
343
- 1[ ][ ]1
344
- <BLANKLINE>
345
- 0[ ][ ]0
346
- <BLANKLINE>
347
- 0[ ][ ]0
348
- sage: RC(partition_list=[[2],[2],[2]], rigging_list=[[0],[0],[0]])
349
- <BLANKLINE>
350
- 1[ ][ ]0
351
- <BLANKLINE>
352
- 0[ ][ ]0
353
- <BLANKLINE>
354
- 0[ ][ ]0
355
- sage: RC
356
- Rigged configurations of type ['A', 3, 1] and factor(s) ((3, 2), (1, 2), (1, 1))
357
- sage: TestSuite(RC).run() # long time (4s on sage.math, 2012)
358
+ sage: RC = RiggedConfigurations(['A', 3, 1], [[3,1], [1,2]])
359
+ sage: TestSuite(RC).run() # long time
358
360
sage: RC = RiggedConfigurations(['A',1,1], [[1,1], [1,1]])
359
361
sage: TestSuite(RC).run()
360
362
sage: RC = RiggedConfigurations(['A',2,1], [[1,1], [2,1]])
361
363
sage: TestSuite(RC).run()
362
- sage: RC = RiggedConfigurations(['D', 4, 1], [[2,2 ]])
364
+ sage: RC = RiggedConfigurations(['D', 4, 1], [[2,1], [1,1 ]])
363
365
sage: TestSuite(RC).run() # long time
364
366
sage: RC = RiggedConfigurations(['D', 4, 1], [[3,1]])
365
367
sage: TestSuite(RC).run() # long time
366
- sage: RC = RiggedConfigurations(['D', 4, 1], [[4,3 ]])
368
+ sage: RC = RiggedConfigurations(['D', 4, 1], [[4,2 ]])
367
369
sage: TestSuite(RC).run() # long time
368
370
"""
369
371
self ._cartan_type = cartan_type
@@ -960,8 +962,7 @@ def __init__(self, cartan_type, dims):
960
962
961
963
sage: RC = RiggedConfigurations(['C',2,1], [[1,1]])
962
964
sage: TestSuite(RC).run()
963
- sage: RC = RiggedConfigurations(['C',2,1], [[1,2],[1,1],[2,1]]); RC
964
- Rigged configurations of type ['C', 2, 1] and factor(s) ((1, 2), (1, 1), (2, 1))
965
+ sage: RC = RiggedConfigurations(['C',2,1], [[1,2],[2,1]])
965
966
sage: TestSuite(RC).run() # long time
966
967
sage: RC = RiggedConfigurations(['B',3,1], [[3,1],[1,1]])
967
968
sage: TestSuite(RC).run() # long time
0 commit comments