Skip to content

Commit

Permalink
Help it compile again
Browse files Browse the repository at this point in the history
  • Loading branch information
phschaad committed Apr 18, 2024
1 parent 4266b63 commit fc1a93f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/overlays/operational_intensity_overlay.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export class OperationalIntensityOverlay extends GenericSdfgOverlay {
const io_edges = [];

for (const e of node.sdfg.nodes[node.parent_id].edges) {
if (e.src == node.id || e.dst == node.id)
if (e.src === node.id.toString() || e.dst === node.id.toString())
io_edges.push(e);
}

Expand Down

0 comments on commit fc1a93f

Please sign in to comment.