Work in progress on AutoDiffMatrix (not compiling).

This commit is contained in:
Atgeirr Flø Rasmussen
2014-09-30 08:53:38 +02:00
committed by babrodtk
parent 63d34157ef
commit 6a5a48e728
3 changed files with 375 additions and 0 deletions

View File

@@ -0,0 +1,125 @@
/*
Copyright 2014 SINTEF ICT, Applied Mathematics.
This file is part of the Open Porous Media project (OPM).
OPM is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OPM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with OPM. If not, see <http://www.gnu.org/licenses/>.
*/
#include <config.h>
#if HAVE_DYNAMIC_BOOST_TEST
#define BOOST_TEST_DYN_LINK
#endif
#define BOOST_TEST_MODULE AutoDiffMatrixTest
#include <opm/autodiff/AutoDiffMatrix.hpp>
#include <boost/test/unit_test.hpp>
using namespace Opm::AutoDiffMatrix;
using std::make_shared;
typedef Eigen::SparseMatrix<double> Sp;
namespace {
template <typename Scalar>
bool
operator ==(const Eigen::SparseMatrix<Scalar>& A,
const Eigen::SparseMatrix<Scalar>& B)
{
// Two SparseMatrices are equal if
// 0) They have the same ordering (enforced by equal types)
// 1) They have the same outer and inner dimensions
// 2) They have the same number of non-zero elements
// 3) They have the same sparsity structure
// 4) The non-zero elements are equal
// 1) Outer and inner dimensions
bool eq = (A.outerSize() == B.outerSize());
eq = eq && (A.innerSize() == B.innerSize());
// 2) Equal number of non-zero elements
eq = eq && (A.nonZeros() == B.nonZeros());
for (typename Eigen::SparseMatrix<Scalar>::Index
k0 = 0, kend = A.outerSize(); eq && (k0 < kend); ++k0) {
for (typename Eigen::SparseMatrix<Scalar>::InnerIterator
iA(A, k0), iB(B, k0); eq && (iA && iB); ++iA, ++iB) {
// 3) Sparsity structure
eq = (iA.row() == iB.row()) && (iA.col() == iB.col());
// 4) Equal non-zero elements
eq = eq && (iA.value() == iB.value());
}
}
return eq;
// Note: Investigate implementing this operator as
// return A.cwiseNotEqual(B).count() == 0;
}
}
BOOST_AUTO_TEST_CASE(Initialization)
{
// Setup.
Mat z = make_shared<Zero>(3,3);
Mat i = make_shared<Identity>(3);
Eigen::Array<double, Eigen::Dynamic> d1(3);
d1 << 0.2, 1.2, 13.4;
Mat d = make_shared<Diagonal>(d1);
Eigen::Matrix<double, Eigen::Dynamic, Eigen::Dynamic> s1(3,2);
s1 <<
1.0, 0.0, 2.0,
0.0, 1.0, 0.0;
Sp s2(s1);
Mat s = make_shared<Sparse>(s2);
}
BOOST_AUTO_TEST_CASE(EigenConversion)
{
// Setup
Mat z = make_shared<Zero>(3,3);
Mat i = make_shared<Identity>(3);
Eigen::Array<double, Eigen::Dynamic> d1(3);
d1 << 0.2, 1.2, 13.4;
Mat d = make_shared<Diagonal>(d1);
Eigen::Matrix<double, Eigen::Dynamic, Eigen::Dynamic> s1(3,2);
s1 <<
1.0, 0.0, 2.0,
0.0, 1.0, 0.0;
Mat s = make_shared<Sparse>(Sp(s1));
// Convert to Eigen::SparseMatrix
Sp x;
z->toSparse(x);
BOOST_CHECK_EQUAL(x, Sp(3,3));
i->toSparse(x);
Sp i1(Eigen::Matrix<double, Eigen::Dynamic, Eigen::Dynamic>::Identity(3,3));
BOOST_CHECK_EQUAL(x, i1);
d->toSparse(x);
BOOST_CHECK_EQUAL(x, Sp(d1.matrix().asDiagonal()));
s->toSparse(x);
BOOST_CHECK_EQUAL(x, Sp(s1));
}