diff --git a/docs/src/api.md b/docs/src/api.md index 131b9ad..91e38ac 100644 --- a/docs/src/api.md +++ b/docs/src/api.md @@ -1,5 +1,5 @@ # Library Reference ```@autodocs -Modules = [StructuredDecompositions, StructuredDecompositions.Decompositions, StructuredDecompositions.FunctorUtils, StructuredDecompositions.DecidingSheaves, StructuredDecompositions.JunctionTrees, StructuredDecompositions.NestedUWDs] +Modules = [StructuredDecompositions, StructuredDecompositions.Decompositions, StructuredDecompositions.FunctorUtils, StructuredDecompositions.DecidingSheaves, StructuredDecompositions.JunctionTrees] ``` diff --git a/docs/src/index.md b/docs/src/index.md index 3480477..e1b6a43 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -19,7 +19,6 @@ Pages = [ "pages/decompostions.md", "pages/decidingsheaves.md", "pages/junction_trees.md", - "pages/nested_uwds.md", "pages/functor_utils.md", ] Depth = 2 diff --git a/docs/src/pages/nested_uwds.md b/docs/src/pages/nested_uwds.md deleted file mode 100644 index 478bae0..0000000 --- a/docs/src/pages/nested_uwds.md +++ /dev/null @@ -1 +0,0 @@ -# [Nested UWDs] (@id NestedUWDs) diff --git a/src/junction_trees/supernode_types.jl b/src/junction_trees/supernode_types.jl index 84ced33..760284a 100644 --- a/src/junction_trees/supernode_types.jl +++ b/src/junction_trees/supernode_types.jl @@ -3,8 +3,8 @@ A type of supernode. The options are - [`Node`](@ref) -- [`MaximalSupernode`](@ref) -- [`FundamentalSupernode`](@ref) +- [`Maximal](@ref) +- [`Fundamental`](@ref) """ abstract type SupernodeType end @@ -18,7 +18,7 @@ struct Node <: SupernodeType end """ - MaximalSupernode <: Supernode + Maximal <: Supernode A maximal supernode. """ @@ -26,7 +26,7 @@ struct Maximal <: SupernodeType end """ - FundamentalSupernode <: Supernode + Fundamental <: Supernode A fundamental supernode. """