From 93973c563ce071ce857f400cffda7caadb74fa53 Mon Sep 17 00:00:00 2001 From: Jukka Aho Date: Sat, 9 May 2026 18:28:26 +0300 Subject: [PATCH] chore(test): drop mesh coloring regression Remove tests for deleted graph coloring helpers. - Delete `test/mesh/test_coloring.jl`. --- test/mesh/test_coloring.jl | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 test/mesh/test_coloring.jl diff --git a/test/mesh/test_coloring.jl b/test/mesh/test_coloring.jl deleted file mode 100644 index 5e43966..0000000 --- a/test/mesh/test_coloring.jl +++ /dev/null @@ -1,20 +0,0 @@ -using JuliaFEM, LinearAlgebra, Test - -datadir = first(splitext(basename(@__FILE__))) - -@testset "Test that mesh coloring provides a good coloring" - fn = joinpath(datadir, "cube_tet4.inp") - mesh = JuliaFEM.Mesh(open(parse_abaqus, fn)) - - coloring = JuliaFEM.create_coloring(mesh) - for colors in coloring - for ele_i in colors - for ele_j in colors - if ele_i == ele_j - continue - end - @test intersect(Set(mesh.elements[ele_i]), Set(mesh.elements[ele_j])) |> isempty - end - end - end -end \ No newline at end of file