Skip to content

Commit

Permalink
pass timer to generate_subsystem_blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbybp committed Mar 7, 2024
1 parent 565a29e commit df4f7af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyomo/contrib/incidence_analysis/scc_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def generate_strongly_connected_components(
subsets = [(cblock, vblock) for vblock, cblock in zip(var_blocks, con_blocks)]
timer.start("generate-block")
for block, inputs in generate_subsystem_blocks(
subsets, include_fixed=include_fixed
subsets, include_fixed=include_fixed, timer=timer
):
timer.stop("generate-block")
# TODO: How does len scale for reference-to-list?
Expand Down

0 comments on commit df4f7af

Please sign in to comment.