Skip to content

Commit

Permalink
Merge pull request #26 from AlgebraicJulia/fix_docs
Browse files Browse the repository at this point in the history
removed nested uwds from docs
  • Loading branch information
samuelsonric authored Nov 20, 2024
2 parents 70c5f1f + 3434467 commit 2549aa4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/src/api.md
Original file line number Diff line number Diff line change
@@ -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]
```
1 change: 0 additions & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion docs/src/pages/nested_uwds.md

This file was deleted.

8 changes: 4 additions & 4 deletions src/junction_trees/supernode_types.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -18,15 +18,15 @@ struct Node <: SupernodeType end


"""
MaximalSupernode <: Supernode
Maximal <: Supernode
A maximal supernode.
"""
struct Maximal <: SupernodeType end


"""
FundamentalSupernode <: Supernode
Fundamental <: Supernode
A fundamental supernode.
"""
Expand Down

0 comments on commit 2549aa4

Please sign in to comment.