From 829824b80e6c17c2f77eb6ef31c131cf5e2d50eb Mon Sep 17 00:00:00 2001 From: hyrodium Date: Mon, 1 Nov 2021 01:09:23 +0900 Subject: [PATCH] remove mean method for rotations --- src/Rotations.jl | 3 ++- test/runtests.jl | 2 -- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Rotations.jl b/src/Rotations.jl index 15b70c1c..770fb7cc 100644 --- a/src/Rotations.jl +++ b/src/Rotations.jl @@ -15,7 +15,8 @@ include("unitquaternion.jl") include("mrps.jl") include("euler_types.jl") include("angleaxis_types.jl") -include("mean.jl") +# TODO: Add method `mean_rotation` instead of `mean` +# include("mean.jl") include("derivatives.jl") include("principal_value.jl") diff --git a/test/runtests.jl b/test/runtests.jl index 1441d421..bb9275fc 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -16,8 +16,6 @@ ramb = detect_ambiguities(Rotations, Base, Core) samb = detect_ambiguities(StaticArrays, Base, Core) @test isempty(setdiff(ramb, samb)) -# TODO test mean() - include("util_tests.jl") include("2d.jl") include("rotation_tests.jl")