@@ -83,7 +83,10 @@ function MathOptAnalyzer._summarize(io::IO, ::Type{NonconvexQuadraticObjective})
8383 return print (io, " # NonconvexQuadraticObjective" )
8484end
8585
86- function MathOptAnalyzer. _summarize (io:: IO , :: Type{NonconvexQuadraticConstraint} )
86+ function MathOptAnalyzer. _summarize (
87+ io:: IO ,
88+ :: Type{NonconvexQuadraticConstraint} ,
89+ )
8790 return print (io, " # NonconvexQuadraticConstraint" )
8891end
8992
@@ -280,7 +283,10 @@ function MathOptAnalyzer._verbose_summarize(
280283 )
281284end
282285
283- function MathOptAnalyzer. _verbose_summarize (io:: IO , :: Type{SmallBoundCoefficient} )
286+ function MathOptAnalyzer. _verbose_summarize (
287+ io:: IO ,
288+ :: Type{SmallBoundCoefficient} ,
289+ )
284290 return print (
285291 io,
286292 """
@@ -309,7 +315,10 @@ function MathOptAnalyzer._verbose_summarize(io::IO, ::Type{SmallBoundCoefficient
309315 )
310316end
311317
312- function MathOptAnalyzer. _verbose_summarize (io:: IO , :: Type{LargeBoundCoefficient} )
318+ function MathOptAnalyzer. _verbose_summarize (
319+ io:: IO ,
320+ :: Type{LargeBoundCoefficient} ,
321+ )
313322 return print (
314323 io,
315324 """
@@ -691,7 +700,11 @@ function MathOptAnalyzer._summarize(io::IO, issue::DenseConstraint, model)
691700 return print (io, MathOptAnalyzer. _name (issue. ref, model), " : " , issue. nnz)
692701end
693702
694- function MathOptAnalyzer. _summarize (io:: IO , issue:: SmallMatrixCoefficient , model)
703+ function MathOptAnalyzer. _summarize (
704+ io:: IO ,
705+ issue:: SmallMatrixCoefficient ,
706+ model,
707+ )
695708 return print (
696709 io,
697710 MathOptAnalyzer. _name (issue. ref, model),
@@ -702,7 +715,11 @@ function MathOptAnalyzer._summarize(io::IO, issue::SmallMatrixCoefficient, model
702715 )
703716end
704717
705- function MathOptAnalyzer. _summarize (io:: IO , issue:: LargeMatrixCoefficient , model)
718+ function MathOptAnalyzer. _summarize (
719+ io:: IO ,
720+ issue:: LargeMatrixCoefficient ,
721+ model,
722+ )
706723 return print (
707724 io,
708725 MathOptAnalyzer. _name (issue. ref, model),
@@ -839,7 +856,11 @@ function MathOptAnalyzer._summarize(
839856 )
840857end
841858
842- function MathOptAnalyzer. _summarize (io:: IO , :: NonconvexQuadraticObjective , model)
859+ function MathOptAnalyzer. _summarize (
860+ io:: IO ,
861+ :: NonconvexQuadraticObjective ,
862+ model,
863+ )
843864 return print (io, " Objective is Nonconvex quadratic" )
844865end
845866
@@ -859,7 +880,11 @@ function MathOptAnalyzer._verbose_summarize(
859880 return print (io, " Variable: " , MathOptAnalyzer. _name (issue. ref, model))
860881end
861882
862- function MathOptAnalyzer. _verbose_summarize (io:: IO , issue:: EmptyConstraint , model)
883+ function MathOptAnalyzer. _verbose_summarize (
884+ io:: IO ,
885+ issue:: EmptyConstraint ,
886+ model,
887+ )
863888 return print (io, " Constraint: " , MathOptAnalyzer. _name (issue. ref, model))
864889end
865890
@@ -871,7 +896,11 @@ function MathOptAnalyzer._verbose_summarize(
871896 return print (io, " Constraint: " , MathOptAnalyzer. _name (issue. ref, model))
872897end
873898
874- function MathOptAnalyzer. _verbose_summarize (io:: IO , issue:: DenseConstraint , model)
899+ function MathOptAnalyzer. _verbose_summarize (
900+ io:: IO ,
901+ issue:: DenseConstraint ,
902+ model,
903+ )
875904 return print (
876905 io,
877906 " Constraint: " ,
@@ -1118,11 +1147,17 @@ function MathOptAnalyzer.list_of_issues(
11181147 return data. matrix_large
11191148end
11201149
1121- function MathOptAnalyzer. list_of_issues (data:: Data , :: Type{SmallBoundCoefficient} )
1150+ function MathOptAnalyzer. list_of_issues (
1151+ data:: Data ,
1152+ :: Type{SmallBoundCoefficient} ,
1153+ )
11221154 return data. bounds_small
11231155end
11241156
1125- function MathOptAnalyzer. list_of_issues (data:: Data , :: Type{LargeBoundCoefficient} )
1157+ function MathOptAnalyzer. list_of_issues (
1158+ data:: Data ,
1159+ :: Type{LargeBoundCoefficient} ,
1160+ )
11261161 return data. bounds_large
11271162end
11281163
0 commit comments