Uwe Fechner
Uwe Fechner
So nice: ```Julia push!(LOAD_PATH, pwd()) ```
@davidanthoff Thank you for looking at this issue! It is so helpful if the linter is working correctly and I can just say "Go to definition", for example.
Would be so nice... :)
My directory structure: ``` ~/project /src Module1.jl Module2.jl Module3.jl project.jl /tests run_test1.jl run_test2.jl runtests.jl ``` runtests.jl is including run_tests1.jl, run_test2.jl etc. project.jl is using Module1.jl, Module2.jl etc. Module3.jl is using...
I had to modify the workaround from @aterenin in the following way: In Module3.jl I had to add: ``` if isdefined(@__MODULE__,:LanguageServer) include("Module1.jl") using .Module1 include("Module2.jl") using .Module2 else using Module1,...
Just tried that, but it is not working for me. I created a symlink in ~/.julia/dev and then tried to use "goto definition", but I just get the message "not...
So we need to fork julia-vscode and start to create a proper Julia IDE ... A pity ...
Bump!
RADAU5 implicit Runge-Kutta method of order 5 (Radau IIA) for problems of the form My'=f(x,y) with possibly singular matrix M; with dense output (collocation solution). Concerning the linear algebra routines...
Any progress on this? What is missing?