[sage-devel] easy review: fix latex of empty skew partition

2022-11-21 Thread 'Martin R' via sage-devel
https://trac.sagemath.org/ticket/34760 thanks in advance, Martin -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-devel+unsubscr...@googlegroups.com. To view

Re: [sage-devel] Re: Invitation: Weekly 30-minute Sage developer calls on Jitsi

2022-11-21 Thread Matthias Koeppe
Same times as last week, please join us! Monday noon, 12:15pm San Francisco Monday afternoon, 3:15pm New York Monday afternoon, 17:15 Rio de Janeiro & Santiago de Chile Monday evening, 21:15 Paris Monday evening, 22:15 Johannesburg Tuesday morning, 9:15am Auckland https://meet.jit.si/VibrantTribe

Re: [sage-devel] Strange bug connected to GAP as a backend

2022-11-21 Thread Dima Pasechnik
These pexpect-based GAP classed in Sage are a mess. The only reason they are still there is that few things are actually implemented in Cython, avoiding GAP, and they are somehow faster (while many things are much slower)... (one needs to update https://trac.sagemath.org/ticket/26902 here) Anyhow,

[sage-devel] Strange bug connected to GAP as a backend

2022-11-21 Thread 'Peter Mueller' via sage-devel
The following lines do what is to be expected: sage: g = SymmetricGroup(3) : u = g.subgroup([]) : x1 = u.trivial_character().induct(g) : dummy = g.conjugacy_classes_subgroups() : x2 = u.trivial_character().induct(g) : print(x1 == x2) : print(x1.scalar_product(x1)) : pri