Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix(grcc): fix for single-vertex graph with GRCC_OPT_Block
From T. Kaneko by email.
  • Loading branch information
jodavies committed Dec 19, 2025
commit ded7931eda5ca30ef211fa125a3905a103ebb47b
2 changes: 1 addition & 1 deletion sources/grcc.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5154,7 +5154,7 @@ Bool MGraph::isOptM(void)
selfloop = (mconn->nselfloops > 0);
multiedge = (mconn->nmultiedges > 0);
tadblock = (mconn->na1blocks > 0);
block = (mconn->neblocks == 1);
block = (mconn->neblocks <= 1);
extself = (mconn->ne1bridges > 0);

if (opt->values[GRCC_OPT_1PI] > 0) {
Expand Down
Loading