Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lgoettgens committed Aug 30, 2023
1 parent 02ad2bf commit 398109a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Pseudograph.jl
Original file line number Diff line number Diff line change
Expand Up @@ -193,5 +193,5 @@ function to_arcdiag(pg::PseudographLabelled{Int}, part::Partition{Int}=Partition
k += 1
end

return ArcDiagramUndirected(n_upper_verts, n_lower_verts, upper_adj, lower_adj)
return arc_diagram(Undirected, upper_adj, lower_adj)
end
2 changes: 1 addition & 1 deletion test/DeformationBases-test.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
sp = smash_product(L, V)

@testset "not all specialisations are zero" begin
diag = ArcDiagramUndirected("ABBD,AD")
diag = arc_diagram(Undirected, "ABBD,AD")
dm = PD.arcdiag_to_deformationmap__so(diag, sp)
@test !iszero(dm)
end
Expand Down

0 comments on commit 398109a

Please sign in to comment.