julia> @time SemiclassicalJacobi(1.0, 1/2, 1.0, 1/2)
284.716841 seconds (218.66 k allocations: 4.023 GiB, 0.34% gc time)
SemiclassicalJacobi with weight x^0.5 * (1-x)^1.0 * (1.0-x)^0.5 on 0..1
I can of course just get around this by checking first if t=1 and then replacing SemiclassicalJacobi(t, a, b, c) with SemiclassicalJacobi(t, a, b + c, 0.0), but could be nice to fix this at some point