Skip to content

Commit fbc498c

Browse files
committed
Flip
1 parent 1d8c4cb commit fbc498c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/conic_form.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Represents an optimization model of the form:
1010
```
1111
sense ⟨c, x⟩ + c0
12-
s.t. b_i - A_i x ∈ C_i ∀ i
12+
s.t. A_i x + b_i ∈ C_i ∀ i
1313
```
1414
with each `C_i` a cone defined in MOI.
1515
"""

test/conic_form.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ function psd1(::Type{T}, ::Type{I}) where {T,I}
111111
9,
112112
11,
113113
],
114-
T[
114+
-T[
115115
-1,
116116
-1,
117117
-1,
@@ -265,7 +265,7 @@ function psd2(
265265
9,
266266
11,
267267
],
268-
T[
268+
-T[
269269
1.0,
270270
-1.0,
271271
-0.45,

0 commit comments

Comments
 (0)