@@ -541,32 +541,32 @@ end
541541
542542# API
543543
544- function ModelAnalyzer. _summarize (io:: IO , :: Type{InfeasibleBounds{T}} ) where {T}
544+ function ModelAnalyzer. _summarize (io:: IO , :: Type{<: InfeasibleBounds} )
545545 return print (io, " # InfeasibleBounds" )
546546end
547547
548548function ModelAnalyzer. _summarize (
549549 io:: IO ,
550- :: Type{InfeasibleIntegrality{T} } ,
551- ) where {T}
550+ :: Type{<: InfeasibleIntegrality} ,
551+ )
552552 return print (io, " # InfeasibleIntegrality" )
553553end
554554
555555function ModelAnalyzer. _summarize (
556556 io:: IO ,
557- :: Type{InfeasibleConstraintRange{T} } ,
558- ) where {T}
557+ :: Type{<: InfeasibleConstraintRange} ,
558+ )
559559 return print (io, " # InfeasibleConstraintRange" )
560560end
561561
562- function ModelAnalyzer. _summarize (io:: IO , :: Type{IrreducibleInfeasibleSubset} )
562+ function ModelAnalyzer. _summarize (io:: IO , :: Type{<: IrreducibleInfeasibleSubset} )
563563 return print (io, " # IrreducibleInfeasibleSubset" )
564564end
565565
566566function ModelAnalyzer. _verbose_summarize (
567567 io:: IO ,
568- :: Type{InfeasibleBounds{T} } ,
569- ) where {T}
568+ :: Type{<: InfeasibleBounds} ,
569+ )
570570 return print (
571571 io,
572572 """
595595
596596function ModelAnalyzer. _verbose_summarize (
597597 io:: IO ,
598- :: Type{InfeasibleIntegrality{T} } ,
599- ) where {T}
598+ :: Type{<: InfeasibleIntegrality} ,
599+ )
600600 return print (
601601 io,
602602 """
626626
627627function ModelAnalyzer. _verbose_summarize (
628628 io:: IO ,
629- :: Type{InfeasibleConstraintRange{T} } ,
630- ) where {T}
629+ :: Type{<: InfeasibleConstraintRange} ,
630+ )
631631 return print (
632632 io,
633633 """
657657
658658function ModelAnalyzer. _verbose_summarize (
659659 io:: IO ,
660- :: Type{IrreducibleInfeasibleSubset} ,
660+ :: Type{<: IrreducibleInfeasibleSubset} ,
661661)
662662 return print (
663663 io,
687687
688688function ModelAnalyzer. _summarize (
689689 io:: IO ,
690- issue:: InfeasibleBounds{T} ,
690+ issue:: InfeasibleBounds ,
691691 model,
692- ) where {T}
692+ )
693693 return print (
694694 io,
695695 ModelAnalyzer. _name (issue. variable, model),
702702
703703function ModelAnalyzer. _summarize (
704704 io:: IO ,
705- issue:: InfeasibleIntegrality{T} ,
705+ issue:: InfeasibleIntegrality ,
706706 model,
707- ) where {T}
707+ )
708708 return print (
709709 io,
710710 ModelAnalyzer. _name (issue. variable, model),
719719
720720function ModelAnalyzer. _summarize (
721721 io:: IO ,
722- issue:: InfeasibleConstraintRange{T} ,
722+ issue:: InfeasibleConstraintRange ,
723723 model,
724- ) where {T}
724+ )
725725 return print (
726726 io,
727727 ModelAnalyzer. _name (issue. constraint, model),
748748
749749function ModelAnalyzer. _verbose_summarize (
750750 io:: IO ,
751- issue:: InfeasibleBounds{T} ,
751+ issue:: InfeasibleBounds ,
752752 model,
753- ) where {T}
753+ )
754754 return print (
755755 io,
756756 " Variable: " ,
764764
765765function ModelAnalyzer. _verbose_summarize (
766766 io:: IO ,
767- issue:: InfeasibleIntegrality{T} ,
767+ issue:: InfeasibleIntegrality ,
768768 model,
769- ) where {T}
769+ )
770770 return print (
771771 io,
772772 " Variable: " ,
782782
783783function ModelAnalyzer. _verbose_summarize (
784784 io:: IO ,
785- issue:: InfeasibleConstraintRange{T} ,
785+ issue:: InfeasibleConstraintRange ,
786786 model,
787- ) where {T}
787+ )
788788 return print (
789789 io,
790790 " Constraint: " ,
0 commit comments