Skip to content

Commit

Permalink
Fix for LayeredLayouts changes
Browse files Browse the repository at this point in the history
  • Loading branch information
daschw committed Feb 28, 2021
1 parent b451ca0 commit a00193f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sankey_layout.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function sankey_layout(original_graph)

# 1. Layer Assigment
layer2nodes = LayeredLayouts.layer_by_longest_path_to_source(graph)
is_dummy_mask = LayeredLayouts.add_dummy_nodes!(graph, layer2nodes)
is_dummy_mask, edge_to_path = LayeredLayouts.add_dummy_nodes!(graph, layer2nodes)

# 2. Layer Ordering
start_time = LayeredLayouts.Dates.now()
Expand Down

2 comments on commit a00193f

@daschw
Copy link
Owner Author

@daschw daschw commented on a00193f Feb 28, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/30985

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.2 -m "<description of version>" a00193fa097ebb8da72c08accdbef546f0fb7eeb
git push origin v0.1.2

Please sign in to comment.