Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbybp committed Jul 10, 2024
1 parent 066471b commit fe79414
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyomo/contrib/incidence_analysis/scc_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ def generate_strongly_connected_components(
nvar = len(variables)
ncon = len(constraints)
raise RuntimeError(
f"generate_strongly_connected_components only supports variables"
f" systems with the same numbers of variables and equality constraints."
f" Got {nvar} variables and {ncon} constraints."
"generate_strongly_connected_components only supports systems with the"
f" same numbers of variables and equality constraints. Got {nvar}"
f" variables and {ncon} constraints."
)
if igraph is None:
igraph = IncidenceGraphInterface()
Expand Down

0 comments on commit fe79414

Please sign in to comment.