Skip to content

Commit

Permalink
Fix array references in NSDFGs
Browse files Browse the repository at this point in the history
  • Loading branch information
phschaad committed Oct 14, 2024
1 parent c0c7657 commit b77db21
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/layouter/layout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,9 @@ function layoutDFNode(
node.type === SDFGElementType.ExternalNestedSDFG) {
if (node.attributes.sdfg &&
node.attributes.sdfg.type !== 'SDFGShell') {
const nsdfg = new SDFG(node.attributes.sdfg);
nestedGraph = layoutControlFlowRegion(
node.attributes.sdfg, state, ctx, cfgList, stateParentList,
node.attributes.sdfg, nsdfg, ctx, cfgList, stateParentList,
omitAccessNodes
);
const sdfgInfo = calculateBoundingBox(nestedGraph);
Expand Down

0 comments on commit b77db21

Please sign in to comment.