/*=========================================================================== Copyright (C) 2007-2015 Yves Renard, Julien Pommier. This file is a part of GETFEM++ Getfem++ is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version along with the GCC Runtime Library Exception either version 3.1 or (at your option) any later version. This program 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 Lesser General Public License and GCC Runtime Library Exception for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. ===========================================================================*/ // SQUARED_MATRIX_PARAM // VECTOR_PARAM; // VECTOR_PARAM; // ENDPARAM; #include "gmm/gmm_kernel.h" #include "gmm/gmm_dense_lu.h" #include "gmm/gmm_condition_number.h" using std::endl; using std::cout; using std::cerr; using std::ends; using std::cin; using gmm::size_type; bool print_debug = false; template bool test_procedure(const MAT1 &m1_, const VECT1 &v1_, const VECT2 &v2_) { VECT1 &v1 = const_cast(v1_); VECT2 &v2 = const_cast(v2_); MAT1 &m1 = const_cast(m1_); typedef typename gmm::linalg_traits::value_type T; typedef typename gmm::number_traits::magnitude_type R; R prec = gmm::default_tol(R()); R error, det, cond; static size_type nb_iter(0); ++nb_iter; size_type m = gmm::vect_size(v1), n = m/2; std::vector v3(n); det = gmm::abs(gmm::lu_det(gmm::sub_matrix(m1, gmm::sub_interval(0,n)))); cond = gmm::condition_number(gmm::sub_matrix(m1, gmm::sub_interval(0,n))); if (prec * cond < R(1)/R(10000) && det != R(0)) { gmm::lu_solve(gmm::sub_matrix(m1, gmm::sub_interval(0,n)), v3, gmm::sub_vector(v2, gmm::sub_interval(0,n))); gmm::mult(gmm::sub_matrix(m1, gmm::sub_interval(0,n)), v3, gmm::sub_vector(v1, gmm::sub_interval(0,n))); gmm::add(gmm::scaled(gmm::sub_vector(v1, gmm::sub_interval(0,n)), T(-1)), gmm::sub_vector(v2, gmm::sub_interval(0,n)), v3); if (!((error = gmm::vect_norm2(v3)) <= prec * R(20000) * cond)) GMM_THROW(gmm::failure_error, "Error too large: "<< error); } det = gmm::abs(gmm::lu_det(gmm::sub_matrix(m1, gmm::sub_slice(0,n,1)))); cond = gmm::condition_number(gmm::sub_matrix(m1, gmm::sub_slice(0,n,1))); if (prec * cond < R(1)/R(10000) && det != R(0)) { gmm::lu_solve(gmm::sub_matrix(m1, gmm::sub_slice(0,n,1)), v3, gmm::sub_vector(v2, gmm::sub_slice(0,n,1))); gmm::mult(gmm::sub_matrix(m1, gmm::sub_slice(0,n,1)), v3, gmm::sub_vector(v1, gmm::sub_slice(0,n,1))); gmm::add(gmm::scaled(gmm::sub_vector(v1, gmm::sub_slice(0,n,1)), T(-1)), gmm::sub_vector(v2, gmm::sub_slice(0,n,1)), v3); if (!((error = gmm::vect_norm2(v3)) <= prec * R(20000) * cond)) GMM_THROW(gmm::failure_error, "Error too large: "<< error); } gmm::copy(gmm::identity_matrix(), gmm::sub_matrix(gmm::transposed(m1), gmm::sub_interval(0,n), gmm::sub_interval(0,m))); gmm::clear(gmm::sub_vector(v2, gmm::sub_interval(n, m-n))); if (print_debug) { cout << "sub matrix of m1 : " << gmm::sub_matrix(gmm::transposed(m1), gmm::sub_interval(0,n)) << endl; } gmm::mult(gmm::sub_matrix(m1, gmm::sub_interval(0,m), gmm::sub_interval(0,n)), gmm::sub_vector(v2, gmm::sub_interval(0,n)), gmm::scaled(v2, T(-1)), v1); if (!((error = gmm::vect_norm2(v1)) <= prec * R(2000))) GMM_THROW(gmm::failure_error, "Error too large: " << error); if (nb_iter == 100) return true; return false; }