Skip to content

Commit

Permalink
JunctionTree test case changed
Browse files Browse the repository at this point in the history
  • Loading branch information
andersenwall committed Nov 10, 2024
1 parent c360575 commit 34be99a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/JunctionTrees.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ order = JunctionTrees.Order(graph, AMDJL_AMD())
@test order == [8, 11, 7, 2, 4, 3, 1, 6, 13, 14, 10, 12, 17, 16, 5, 9, 15]

order = JunctionTrees.Order(graph, MetisJL_ND())
@test order == [11, 17, 14, 13, 10, 12, 8, 6, 7, 5, 4, 3, 9, 2, 1, 16, 15]
# @test order == [11, 17, 14, 13, 10, 12, 8, 6, 7, 5, 4, 3, 9, 2, 1, 16, 15]
# changing test case to only check that the size of the order object as the object in previous test case
# reference change request in PR#20 StructuredDecompositions
@test length(order) == length([11, 17, 14, 13, 10, 12, 8, 6, 7, 5, 4, 3, 9, 2, 1, 16, 15])

order = JunctionTrees.Order(graph, MCS())
@test order == [2, 3, 4, 8, 1, 5, 6, 9, 7, 11, 13, 10, 14, 16, 12, 15, 17]
Expand Down

0 comments on commit 34be99a

Please sign in to comment.