Oscar Dowson

Results 907 comments of Oscar Dowson

Is this still an issue? I don't really see it being a Documenter.jl feature. Instead, packages like Literate and Weave should make it easy to generate Documenter-compatible markdown files. (Literate...

Isn't this just a case of user-beware? To make a smaller header, use more `#`. Having different styling just adds complexity.

Doesn't the caption just use the alt-text? ``` ![Example showing the angular separation...](sphereangles.svg) ```

> I am not sure if we should actually do anything here. I agree. Close in favor of https://github.com/JuliaDocs/Documenter.jl/issues/1697?

Confirmed this is still an issue: https://baggepinnen.github.io/SpectralDistances.jl/latest/distances/#SpectralDistances.AbstractDistance

See also #1606. The preferred link is https://diataxis.fr

To update, MathOptInterface supports a variety of warm-starts: * `MOI.VariablePrimalStart` * `MOI.ConstraintPrimalStart` * `MOI.ConstraintDualStart` * `MOI.NLPBlockDualStart` so this is no longer blocked at the MOI or solver level.

Just confirming that this is still a problem ```Julia using JuMP import NLopt m = Model(NLopt.Optimizer) set_optimizer_attribute(m, "algorithm", :LD_SLSQP) @variable(m, c[1:2] >= 0) @constraint(m, sum(c) using JuMP julia> import NLopt...

I haven't debugged, but the problem looks to be here: https://github.com/lanl-ansi/Juniper.jl/blob/7e529e98cd22482071e0f150bd6917e01ec5f94d/src/fpump.jl#L67-L83 We're producing a `ScalarAffineFunction{Int}` instead of `ScalarAffineFunction{Float64}`. It's probably just a matter of adding some `Float64` casts in the...

The error is not related to NLopt. Here is the relevant section of the Julia manual: https://docs.julialang.org/en/v1/manual/parallel-computing/#code-availability-1 To avoid issues with serializing the `NLopt.Opt`, you probably want to construct it...