From 6a3877f07dce56711ae9a77d3551b1e586f6b349 Mon Sep 17 00:00:00 2001 From: GeorgeR227 <78235421+GeorgeR227@users.noreply.github.com> Date: Fri, 20 Sep 2024 17:04:55 -0400 Subject: [PATCH] Fixed order of inclusions --- src/DiagrammaticEquations.jl | 3 ++- test/graph_traversal.jl | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/DiagrammaticEquations.jl b/src/DiagrammaticEquations.jl index 72cada6..558a839 100644 --- a/src/DiagrammaticEquations.jl +++ b/src/DiagrammaticEquations.jl @@ -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 diff --git a/test/graph_traversal.jl b/test/graph_traversal.jl index 7a5d6ac..b09fd24 100644 --- a/test/graph_traversal.jl +++ b/test/graph_traversal.jl @@ -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