Mateus Araújo

Results 26 issues of Mateus Araújo

The kronecker product between complex hermitian matrices is again hermitian, so it can be computed much faster by only doing the upper (or lower) triangular. As @andreasnoack will surely notice,...

linear algebra

`gamma(Double64(z),x)` works fine when `x < 3`, but if I call for example `gamma(Double64(z),3)` it chokes. The reason is that it goes on to a different branch of the code...

It would be nice to have the complex version of the vector cones defined in MOI, so that we have we nice a interface for the solvers that can handle...

Submodule: Bridges

Currently the version of HCubature is 1.6.0 in the general registry, but 1.5.1 on github. I suppose some configuration for automatic tagging has gone awry?

The following code gives me a stack overflow error: ```julia using DynamicPolynomials using SumOfSquares import SCS model = Model(SCS.Optimizer) @ncpolyvar a0 a1 b0 b1 p = a0*b0 + a0*b1 +...

Apparently this issue was fixed some years ago, but it came back: #93 Specifically, the following code fails: ```julia import QuantumInformation import JuMP model = JuMP.Model() JuMP.@variable(model, rho[1:4, 1:4] in...

The documentation says that we need `always_for_in = nothing` to disable it, but this is not true, what we need is `always_for_in = "nothing"`. I've changed the documentation to match...

This undoes the hack I had done in #831, thanks to jump-dev/JuMP.jl#3734.

As the title says, the following code fails: ```julia using LinearAlgebra using GenericLinearAlgebra m = Hermitian(Diagonal(randn(BigFloat,2))) eigvals(m) ``` This is not related to `BigFloat`, it also fails for `Double64` and...

MWE: ```julia using LinearAlgebra m = Symmetric(fill(ones(2,2), 2, 2)) eltype(m) n = Hermitian(fill(ones(2,2), 2, 2)) eltype(n) ``` On the other hand, if we do this with `UpperTriangular` or `LowerTriangular` the...

domain:linear algebra