WolframLanguageForJupyter
WolframLanguageForJupyter copied to clipboard
Interrupt evaluating support?
When evaluating takes a long time, are there some method to interrupt calculation but remain kernel connected?
For example, evaluate Integrate[1/Sqrt[x^4 + a*x^2 + b], x]
and click interrupt immediately, got popup
neither click yes or no, the kernel exit and need restart to reconnect. Test in wolfram mathematica 13.2.
Hi guys, I write a similar project that support interrupt, by receiving message from jupyter frontend. The evaluation is done inside an external link, so interrupt not lose connection to kernel manage it. Now it is poorly featured, if you are interested, see https://github.com/fakeGenuis/wolframForJupyter.git
Wow,cool not fakeGenuis TrueGenuis!!!!!!!
Looks cool!
Just generally, I will say that I am happy to look at pull requests that improve this project as well.
Looks cool!
Just generally, I will say that I am happy to look at pull requests that improve this project as well.
Yeah, I really want to contribute upon this project at first. But the complexity of it prevent me from that,especially the evaluation and request handler parts. Many features are still missing in the new project, which makes it more simple to construct and debug with just one addition interrupt support. Anyway, this project are really well structured and I borrow many implements from it.