From ae83f5ede96cb1171fb5fd9303777a9035748ca9 Mon Sep 17 00:00:00 2001 From: Christoph Hertzberg Date: Thu, 7 Nov 2013 18:32:24 +0100 Subject: Fixed bug #702 and added unit test. Thanks to Alexander Werner for the report. --- unsupported/test/autodiff_scalar.cpp | 44 ++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 unsupported/test/autodiff_scalar.cpp (limited to 'unsupported/test/autodiff_scalar.cpp') diff --git a/unsupported/test/autodiff_scalar.cpp b/unsupported/test/autodiff_scalar.cpp new file mode 100644 index 000000000..ba4b5aec4 --- /dev/null +++ b/unsupported/test/autodiff_scalar.cpp @@ -0,0 +1,44 @@ +// This file is part of Eigen, a lightweight C++ template library +// for linear algebra. +// +// Copyright (C) 2013 Christoph Hertzberg +// +// This Source Code Form is subject to the terms of the Mozilla +// Public License v. 2.0. If a copy of the MPL was not distributed +// with this file, You can obtain one at http://mozilla.org/MPL/2.0/. + +#include "main.h" +#include + +/* + * In this file scalar derivations are tested for correctness. + * TODO add more tests! + */ + +template void check_atan2() +{ + typedef Matrix Deriv1; + typedef AutoDiffScalar AD; + + AD x(internal::random(-3.0, 3.0), Deriv1::UnitX()); + + using std::exp; + Scalar r = exp(internal::random(-10, 10)); + + AD s = sin(x), c = cos(x); + AD res = atan2(r*s, r*c); + + VERIFY_IS_APPROX(res.value(), x.value()); + VERIFY_IS_APPROX(res.derivatives(), x.derivatives()); +} + + + + +void test_autodiff_scalar() +{ + for(int i = 0; i < g_repeat; i++) { + CALL_SUBTEST_1( check_atan2() ); + CALL_SUBTEST_2( check_atan2() ); + } +} -- cgit v1.2.3