Johan-Gronqvist

Results 5 comments of Johan-Gronqvist

I see the same symptom, and I also see an error message in the output of the terminal that started jupyterlab. ``` SyncTex command `synctex edit -o 6:0:0:/Workspace/PATH/TO/MY/PDF/File.pdf` errored with...

I just had this issue, and in my case I have an upper triangular 2x2-matrix `A` for which inv seems to compute `ldiv!(A, Matrix{Num}(I, (2, 2)))`. The type of `I`...

This seems to give me the behaviour I want, in the case I am looking at now: ``` import Symbolics: Num Num(b :: Bool) = ifelse(b, one(Num), zero(Num)) ```

I am now using Symbolics v4.14.0 instead, which works for me.

The problem seems to appear if the expression is a multiplication and one of the terms contain coefficients that are themselves symbolic expressions. A check if those expressions are zero...