From ff92b124121d9b02c2bc45dc224e3f1cb7150f3a Mon Sep 17 00:00:00 2001 From: Mateusz Baran Date: Thu, 29 Aug 2024 17:42:55 +0200 Subject: [PATCH] don't test representation for product and semidirect product groups --- test/groups/product_group.jl | 2 +- test/groups/special_euclidean.jl | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/test/groups/product_group.jl b/test/groups/product_group.jl index 2fd56f6b4..1fa4be91b 100644 --- a/test/groups/product_group.jl +++ b/test/groups/product_group.jl @@ -107,7 +107,7 @@ using RecursiveArrayTools test_mutating=false, test_adjoint_action=true, ) - test_manifold(G, pts; is_mutating=false) + test_manifold(G, pts; is_mutating=false, test_representation_size=false) @test isapprox( G, exp_lie(G, X_pts[1]), diff --git a/test/groups/special_euclidean.jl b/test/groups/special_euclidean.jl index 3942ccb6e..d063fdc98 100644 --- a/test/groups/special_euclidean.jl +++ b/test/groups/special_euclidean.jl @@ -137,6 +137,7 @@ using Manifolds: #test_inplace=true, test_vee_hat=true, exp_log_atol_multiplier=50, + test_representation_size=false, ) for CS in [CartanSchoutenMinus(), CartanSchoutenPlus(), CartanSchoutenZero()] @@ -162,6 +163,7 @@ using Manifolds: is_tangent_atol_multiplier=1, test_inner=false, test_norm=false, + test_representation_size=false, ) end end @@ -189,6 +191,7 @@ using Manifolds: is_mutating=true, exp_log_atol_multiplier=50, is_tangent_atol_multiplier=1, + test_representation_size=false, ) end end @@ -223,6 +226,7 @@ using Manifolds: test_vee_hat=true, test_is_tangent=true, # fails exp_log_atol_multiplier=50, + test_representation_size=false, ) # specific affine tests p = copy(G, pts[1])