Skip to content

Commit

Permalink
improve coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
timvieira committed Jun 29, 2024
1 parent c8e6fed commit a57ca74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions genparse/linear.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ def graphviz(self, label_format=str, escape=lambda x: html.escape(str(x))):
)

for i, j in self:
if self.E[i, j] == self.WeightType.zero:
continue
# if self.E[i, j] == self.WeightType.zero:
# continue
g.edge(str(name(i)), str(name(j)), label=label_format(self.E[i, j]))

for i in self.N:
Expand Down

0 comments on commit a57ca74

Please sign in to comment.