Dominique

Results 406 comments of Dominique

Thanks. Those are all good suggestion. I'd be happy to review pull requests but for the time being, I'm not able to find the time to implement them.

Great idea. I'll mark it as an enhancement in case anyone wants to work on a PR. Thanks!

Here are existing `py.test`-related packages: - https://atom.io/packages/nuclide-test-runner-pytest - https://github.com/pghilardi/atom-python-test

Solution: https://gist.github.com/b729c4dbe963b33279ab

Hi @ronisbr. Thanks for the fast response. I admit I haven't thought about the interface. Perhaps some like ``` pretty_table(data, [["Col. 1", "Col. 2"], ["Col. 3", "Col. 4"]], ["Header 1",...

Works wonders on macOS with Airfoil! You're a hero! Many thanks!!!

Same issue on FreeBSD: ``` LoadError: Cannot locate artifact 'libknet8' for x86_64-unknown-freebsd-libgfortran5-cxx11-julia_version+1.7.3 in '/.julia/packages/Knet/YIFWC/Artifacts.toml' ``` https://cirrus-ci.com/task/6610845332406272?logs=test#L201 All seems well on the GitHub Actions VMs (Ubuntu, macOS and Windows64), even though...

We should think of a complete integration of SparseMatricesCOO. NLPModels could return sparse Jacobians and Hessians in COO format. Then we need to update methods to update the elements of...

I was wondering why `jac_coord!()` and `hess_coord!()` are insufficient. If your Jacobian and Hessian are stored in dense matrices, isn't it ok to pass views of those matrices (that "vectorize"...

@sshin23 Sorry for the delay. I guess I'm just wondering in what way ```julia jac!(args...) = jac_coord!(args...) hess!(args...) = hess_coord!(args...) ``` are insufficient if a problem defines `jac_structure()` and `hess_structure()`...