Eric Hanson
Eric Hanson
I'm running into this too. In https://docs.github.com/en/rest/reference/checks#update-a-check-run under "Properties of the `annotations` items" they say > message (string) | Required. A short description of the feedback for these lines of...
any chance the v3 rewrite can include this? 😄
Sorry for the late reply. I think one PR sounds good, maybe could be opt-out if you want to give folks the old way too. > Lets say we need...
I don’t think a macro that defines a show method should be obligatory because then you will get method overwrites if you define your own show method (which is one...
+1 for this. I'd like to use OnlineStats with Distributed.jl by having local stat objects on each processor, and then periodically `merge!` them onto stat objects on the driver. Then...
This is very late, but one workaround is to just set `x.value = ones(n)`. When you call `solve!` with `warmstart=true` it will give you a warning: ```julia julia> solve!(problem, SCSSolver();...
Convex doesn’t have such a type yet though we could add one. One thing you can do now is `fix!` a variable to different values, which kind of mimics a...
Interesting. To me it sounds like a lot of this will have to be on the MathOptInterface side of things, since that’s what does many of the transformations to result...
Yeah, I believe this issue is about creating a tracking system to verify DPPness, just like we do for convexity (DCPness). I don’t think DiffOpt does this. (Similar in spirit...
I just ran into this problem about zero imaginary components giving errors, and I'd like to second @falbarelli's comment that > I'm sure that there are plenty of cases where...