Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename Slices to SliceCategories to avoid name conflict #883

Merged
merged 1 commit into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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