Skip to content

Commit

Permalink
Merge pull request #883 from AlgebraicJulia/dontExportSlices
Browse files Browse the repository at this point in the history
Rename `Slices` to `SliceCategories` to avoid name conflict
  • Loading branch information
epatters committed Jan 23, 2024
2 parents 628c0a8 + bd281c1 commit 07e30a9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/categorical_algebra/CategoricalAlgebra.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ include("CatElements.jl")
include("Chase.jl")
include("FunctorialDataMigrations.jl")
include("StructuredCospans.jl")
include("Slices.jl")
include("SliceCategories.jl")

@reexport using .Categories
@reexport using .FinCats
Expand All @@ -41,6 +41,6 @@ include("Slices.jl")
@reexport using .Chase
@reexport using .FunctorialDataMigrations
@reexport using .StructuredCospans
@reexport using .Slices
@reexport using .SliceCategories

end
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Slices
module SliceCategories
export Slice, SliceHom

using StructEquality
Expand Down
4 changes: 2 additions & 2 deletions test/categorical_algebra/CategoricalAlgebra.jl
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ end
include("StructuredCospans.jl")
end

@testset "Slices" begin
include("Slices.jl")
@testset "SliceCategories" begin
include("SliceCategories.jl")
end


Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module TestSlices
module TestSliceCategories
using Test

using Catlab.Theories, Catlab.CategoricalAlgebra, Catlab.Graphs
Expand Down

0 comments on commit 07e30a9

Please sign in to comment.