Mercurial > repos > public > sbplib_julia
comparison test/Grids/manifolds_test.jl @ 1920:ae83c91286a2 feature/grids/manifolds
Implement connections for CartesianAtlas
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 05 Feb 2025 16:17:29 +0100 |
parents | 71d218593cac |
children | 7fb713570965 |
comparison
equal
deleted
inserted
replaced
1919:71d218593cac | 1920:ae83c91286a2 |
---|---|
31 west = CartesianBoundary{1,LowerBoundary} | 31 west = CartesianBoundary{1,LowerBoundary} |
32 east = CartesianBoundary{1,UpperBoundary} | 32 east = CartesianBoundary{1,UpperBoundary} |
33 south = CartesianBoundary{2,LowerBoundary} | 33 south = CartesianBoundary{2,LowerBoundary} |
34 north = CartesianBoundary{2,UpperBoundary} | 34 north = CartesianBoundary{2,UpperBoundary} |
35 | 35 |
36 @test_broken Set(connections(a)) == Set([ | 36 @test Set(connections(a)) == Set([ |
37 (MultiBlockBoundary{(1,1), east}, MultiBlockBoundary{(2,1), west}), | 37 (MultiBlockBoundary{(1,1), east}(), MultiBlockBoundary{(2,1), west}()), |
38 (MultiBlockBoundary{(1,2), east}, MultiBlockBoundary{(2,2), west}), | 38 (MultiBlockBoundary{(1,2), east}(), MultiBlockBoundary{(2,2), west}()), |
39 (MultiBlockBoundary{(1,1), north}, MultiBlockBoundary{(1,2), south}), | 39 (MultiBlockBoundary{(1,1), north}(), MultiBlockBoundary{(1,2), south}()), |
40 (MultiBlockBoundary{(1,2), north}, MultiBlockBoundary{(2,2), south}), | 40 (MultiBlockBoundary{(2,1), north}(), MultiBlockBoundary{(2,2), south}()), |
41 ]) | 41 ]) |
42 end | 42 end |
43 | 43 |
44 @testset "UnstructuredAtlas" begin | 44 @testset "UnstructuredAtlas" begin |
45 @test_broken false | 45 @test_broken false |