Eddie Groshev

Results 12 issues of Eddie Groshev

Fixed a few bugs and added some sanity checks. Should resolve #26

The following code doesn't work: ``` x = np.array([31,-2]) K = np.array([[3,5],[7,11],[13,17]]) _x = cgt.vector(fixed_shape=[2], name="x") _K = cgt.matrix(fixed_shape=[3,2], name="K") grad_K = cgt.grad(_K.dot(_x)[0], _K) grad_K_x = cgt.grad(grad_K[0,0], _x) f_K_x =...

This is a feature request. Would be great to use MUMPS (http://mumps.enseeiht.fr) as the direct solver in OSQP.

linear system solver

This should resolve issue #1 while keeping backwards compatibility with python 2.6+

The following function: ``` def foo(bar): return "hello" + bar ``` results in: ``` """[summary] [description] :param bar: [description] :type bar: [type] """ ``` should be: ``` """[summary] [description] :param...

It calls the object constructor but not `StructTypes.construct`, which violates the `StructTypes` API.

`JSON3.pretty` doesn't work for `UInt64`, `UInt128`, `Dict{UInt128,String}`. Easily reproducible with a toy example, write out a vector of type `Vector{UInt128}` with random entries and try reading it back. `JSON3.write` doesn't...

I'm not sure whether this is an issue with JSServe or WGLMakie, but the Textbox widget from WGLMakie doesn't work with JSServe.

When a new value is selected, the menu widget doesn't display the new selected value. It consistently displays the initial value. I'll also periodically get this stacktrace, not sure if...