You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix jacobimatrix (plus a test)
* Add support for derivative of bubble functions
* Fix tests on definition of TwoBand + add derivative and inner product of HalfWeighted{:ab}(TwoBand(\rho, 1,1,0))
* Type-stability and simplifications
* Fix first failing test
* Update test_twoband.jl
* v0.3.2
Co-authored-by: ioannisPApapadopoulos <[email protected]>
Co-authored-by: Sheehan Olver <[email protected]>
SemiclassicalJacobi(t, a, b, c) =SemiclassicalJacobi(t, a, b, c, semiclassical_jacobimatrix(t, a, b, c))
167
168
SemiclassicalJacobi{T}(t, a, b, c) where T =SemiclassicalJacobi(convert(T,t), convert(T,a), convert(T,b), convert(T,c))
168
169
169
-
WeightedSemiclassicalJacobi(t, a, b, c, P...) =SemiclassicalJacobiWeight(t, a, b, c).*SemiclassicalJacobi(t, a, b, c, P...)
170
+
WeightedSemiclassicalJacobi{T}(t, a, b, c, P...) where T =SemiclassicalJacobiWeight{T}(convert(T,t), convert(T,a), convert(T,b), convert(T,c)).*SemiclassicalJacobi{T}(convert(T,t), convert(T,a), convert(T,b), convert(T,c), P...)
170
171
171
172
172
173
@@ -360,6 +361,7 @@ end
360
361
361
362
\(A::SemiclassicalJacobi, w_B::WeightedSemiclassicalJacobi) = (SemiclassicalJacobiWeight(A.t,0,0,0) .* A) \ w_B
0 commit comments