Mathieu Besançon
Mathieu Besançon
It would be nice to be able to keep track of which variables correspond to which index in the representations: ```julia julia> m = Model() julia> @variable(m, α[1:2,1:2] >= 0)...
the documentation of the `MatrixOfConstraints` section is API-oriented with each function presented separately. It could help to add an example to build a `MatrixOfConstraints` from matrices and RHS à la...
This PR is a first take on https://github.com/jump-dev/MathOptInterface.jl/issues/863 Before we get into yet another scope creep, I think it is reasonable to try this only on SAF for now. This...
The current way of representing `A x` is with a `VectorAffineFunction`, which has the following structure: ```julia MOI.VectorAffineFunction( [MOI.VectorAffineTerm( row_idx, ScalarAffineTerm( coeff, col_idx, ) )], [constants] ) ``` This has...
It would be nice to have: * `cdf` using QuadGK? Or `StatsBase.ecdf`? * `quantile` using `cdf` with bijection method
This could be a simpler alternative to https://github.com/mauro3/SimpleTraits.jl/pull/2 Defining a trait `CombinedTrait{X, T1, T2}` with `T1{X}, T2{X}` traits. The implementation of CombinedTrait{X, T1, T2} could be given by a function...
Should `Base.setindex` be defined on `Tangent`? It could be handy to construct specific tangents, for example, by modifying the output of `rand_tangent`. Base has `setindex` (no bang) for tuples and...
Was just testing something boiling down to: `ZeroTangent() ≈ 0` Should this be accepted? Along with arrays for which the norm is 0?