Skip to content

Commit 64c056f

Browse files
committed
Fixes
1 parent 23a06cf commit 64c056f

File tree

3 files changed

+4
-12
lines changed

3 files changed

+4
-12
lines changed

.travis.yml

-9
This file was deleted.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ model = Model(optimizer_constructor)
168168
optimize!(model)
169169
```
170170

171-
[build-img]: https://github.org/blegat/SetProg.jl/workflows/CI/badge.svg?branch=master
172-
[build-url]: https://github.org/blegat/SetProg.jl/actions?query=workflow%3ACI
171+
[build-img]: https://github.com/blegat/SetProg.jl/workflows/CI/badge.svg?branch=master
172+
[build-url]: https://github.com/blegat/SetProg.jl/actions?query=workflow%3ACI
173173
[codecov-img]: http://codecov.io/github/blegat/SetProg.jl/coverage.svg?branch=master
174174
[codecov-url]: http://codecov.io/github/blegat/SetProg.jl?branch=master
175175

src/variables.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,8 @@ function constrain_convex(model, p, vars)
214214
length(X))
215215
Q = @variable(model, [1:MOI.dimension(set)])
216216
@constraint(model, Q in set)
217-
s = SumOfSquares.build_gram_matrix(Q, MonomialBasis(X))
217+
s = SumOfSquares.build_gram_matrix(
218+
Q, MonomialBasis(X), MOI.PositiveSemidefiniteConeTriangle, Float64)
218219
@constraint(model, q == s)
219220
return MultivariateMoments.getmat(s)
220221
end

0 commit comments

Comments
 (0)