Skip to content

Commit

Permalink
Fixed order of inclusions
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeR227 committed Sep 20, 2024
1 parent d4427b1 commit 6a3877f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/DiagrammaticEquations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,10 @@ include("graph_traversal.jl")
include("deca/Deca.jl")
include("learn/Learn.jl")
include("SymbolicUtilsInterop.jl")
include("acset2symbolic.jl")

@reexport using .Deca
@reexport using .SymbolicUtilsInterop

include("acset2symbolic.jl")

end
2 changes: 1 addition & 1 deletion test/graph_traversal.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ using MLStyle
using Test

function is_correct_length(d::SummationDecapode, result)
return length(result) == number_of_ops(d)
return length(result) == n_ops(d)
end

@testset "Topological Sort on Edges" begin
Expand Down

0 comments on commit 6a3877f

Please sign in to comment.