Skip to content

Commit 72b50c5

Browse files
committed
format
1 parent 9d97c69 commit 72b50c5

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/ConicProgram/ConicProgram.jl

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,11 +184,15 @@ function _gradient_cache(model::Model)
184184
b = model.model.constraints.constants
185185

186186
if any(isnan, model.y) || length(model.y) < length(b)
187-
error("Some constraints are missing a value for the `ConstraintDualStart` attribute.")
187+
error(
188+
"Some constraints are missing a value for the `ConstraintDualStart` attribute.",
189+
)
188190
end
189191

190192
if any(isnan, model.s) || length(model.s) < length(b)
191-
error("Some constraints are missing a value for the `ConstraintPrimalStart` attribute.")
193+
error(
194+
"Some constraints are missing a value for the `ConstraintPrimalStart` attribute.",
195+
)
192196
end
193197

194198
if MOI.get(model, MOI.ObjectiveSense()) == MOI.FEASIBILITY_SENSE

0 commit comments

Comments
 (0)