Tamas K. Papp
Tamas K. Papp
```julia ┌ Error: omitting file /home/tamas/code/julia/FunctionalTables/src/tables.jl due to parsing error near line 73 └ @ Revise /home/tamas/.julia/packages/Revise/TmjcT/src/parsing.jl:55 Base.Meta.ParseError("missing comma or } in argument list") NamedTuple{(:A, :b),Tuple{Int64,Int64}} ``` cf https://github.com/timholy/Revise.jl/issues/179
Eg `C-c C-d` on `Base.@kwdef` only uses `@kwdef`. Possibly convenient solution: extend `thing-at-point` to look for preceding `.`, and when found, include module.
Add the following functionality: when inside a function, select the whole body of the function and send it to the REPL, Similarly to `C-c C-c` in ESS. Should work with...
Use something like ```elisp (defcustom var ...) (make-variable-buffer-local 'var) ``` for API-exposed buffer local variables. Also cleanup said variables.
There should be an option for sending code longer than some threshold (eg 10 lines) sent by `include`. Eg by evaluating an expression ```julia julia> include("/tmp/xyz.jl") # code from buffer.jl,...
It is time for a redesign of the stress testing framework. Specifically, 1. **Restrict input range**. Using Cauchy for random coordinates is excessive, as it can easily result in values...
DynamicHMC does not deal well with incorrect deriatives. These can result from AD errors (conceptual errors in mature AD libraries are rare, but numerical corner cases can still happen), or...
Fixes #102.
When writing this package I implicitly assumed that that whenever the log density is finite, the gradient (and now the Hessian, see #101) are also. So calling eg `logdensity_and_gradient` in...