Nikitas Rontsis

Results 44 comments of Nikitas Rontsis

Thanks, you can find the data [here](https://www.dropbox.com/s/syftln03g4ukjtc/scs.pkl?dl=0). ## How to run Set `OMP_NUM_THREADS=1` and run in python ``` import pickle import scs with open('scs.pkl', 'rb') as handle: data = pickle.load(handle)...

I have used the `with_options` factory to allow the user to choose which eigensolver/projector they want. I believe that this is sensible, even though it does not allow the user...

https://github.com/jonniedie/ComponentArrays.jl/issues/113 is also related

Somewhat related: https://github.com/jonniedie/ComponentArrays.jl/issues/116#issuecomment-1016069072

Thanks for the reply, I am happy to give a go at opening a PR for this, but I would prefer that the open PRs get reviewed first, to minimise...

Not a solution, but it seems possible to create a zero-length array via: ```julia ComponentVector(Vector{Float64}(), (Axis(),)) ```

@jonniedie sorry for the broken tests, these are passing now in my machine.

> Why not just overload getindex for the adjoint? * To reduce the size of this library and the number of concepts that it introduces * `ComponentArrays` either way allows...

Thanks a lot for the review @jonniedie! I am happy to add any tests you feel sensible. However I think some of the old tests were actually incorrect, as I...