Yingbo Ma
Yingbo Ma
This particular case can be solved by just not generating all the 0s. We should be able to solve this downstream. ```julia julia> symjac = MTK.calculate_jacobian(_nl_system); julia> J = sparse(Float64.(isequal.(symjac,...
That's a good idea.
@shashi could you take a look? We won't need `getparent` now, right?
Thanks a lot! I will review this tomorrow.
Sorry for the late review. I just pushed some modifications to the PR.
Thanks for reporting the bug. The event system is still under development. This bug happens because the event system doesn't communicate the event information to the structural transformation code.
Try to use a different solver in the tests
Thanks a lot!
@simonbyrne Yes, those are correct.
```julia julia> using GR julia> for i = 1:10 try plot(1:100000) println(i) sleep(1) catch InterruptException println("Interrupt") break end end 1 2 ^C3 ^C^C4 ^C^C^C^C5 ^C^C^C^C^C^C^C^C^C^C^C^C^C^C^C6 ^C^C7 8 9 10 ```...