We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1177a2 commit 6b94db6Copy full SHA for 6b94db6
pyomo/contrib/incidence_analysis/visualize.py
@@ -186,10 +186,7 @@ def spy_dulmage_mendelsohn(
186
nv = sum(len(vb) for vb in vblocks)
187
nc = sum(len(cb) for cb in cblocks)
188
stop = (start[0] + nv - 1, start[1] + nc - 1)
189
- if (
190
- not (i == 1 and skip_wellconstrained)
191
- and nv > 0 and nc > 0
192
- ):
+ if not (i == 1 and skip_wellconstrained) and nv > 0 and nc > 0:
193
# Regardless of whether we are plotting in upper or lower
194
# triangular order, the well-constrained subsystem is at
195
# position 1
0 commit comments