⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gmres.cc

📁 一个通用的数学库
💻 CC
字号:
//===========================================================================//  CVS Information:                                                         //                                                                           //     $RCSfile: gmres.cc,v $  $Revision: 1.2 $  $State: Exp $ //     $Author: jsiek $  $Date: 2000/08/28 15:22:59 $ //     $Locker:  $ //---------------------------------------------------------------------------//                                                                           // DESCRIPTION                                                               //                                                                           //---------------------------------------------------------------------------//                                                                           // LICENSE AGREEMENT                                                         // Copyright 1997, University of Notre Dame.// Authors: Andrew Lumsdaine, Jeremy G. Siek//// This file is part of the Matrix Template Library//// You should have received a copy of the License Agreement for the// Matrix Template Library along with the software;  see the// file LICENSE.  If not, contact Office of Research, University of Notre// Dame, Notre Dame, IN  46556.//// Permission to modify the code and to distribute modified code is// granted, provided the text of this NOTICE is retained, a notice that// the code was modified is included with the above COPYRIGHT NOTICE and// with the COPYRIGHT NOTICE in the LICENSE file, and that the LICENSE// file is distributed with the modified code.//// LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED.// By way of example, but not limitation, Licensor MAKES NO// REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY// PARTICULAR PURPOSE OR THAT THE USE OF THE LICENSED SOFTWARE COMPONENTS// OR DOCUMENTATION WILL NOT INFRINGE ANY PATENTS, COPYRIGHTS, TRADEMARKS// OR OTHER RIGHTS.//---------------------------------------------------------------------------//                                                                           // REVISION HISTORY:                                                         //                                                                           // $Log: gmres.cc,v $// Revision 1.2  2000/08/28 15:22:59  jsiek// got rid of iostream.h and replaced with iostream//// Revision 1.1.1.1  2000/07/12 21:51:43  jsiek// stable mtl version//// Revision 1.9  1999/09/30 07:04:48  jsiek// argc, argv unused//// Revision 1.8  1999/07/07 16:10:35  jsiek// change #include to itl/gmres.h//// Revision 1.7  1999/04/19 17:51:37  jsiek// blah//// Revision 1.6  1999/04/18 23:15:05  jsiek// begin/end//// Revision 1.5  1999/03/10 17:07:58  jsiek// sparse -> compressed<> and compressed -> compressed<> name changes//// Revision 1.4  1999/03/04 17:37:46  llee1// *** empty log message ***//// Revision 1.3  1999/02/02 22:07:23  arodrig6// added and updated BLAS level I and II examples to reflect new style vectors and Matrix definitions//// Revision 1.1  1998/08/14 15:28:56  llee1// example for gmres,//////                                                                           //===========================================================================#include "mtl/matrix.h"#include "mtl/mtl.h"#include "mtl/utils.h"#include "itl/itl.h"#include "itl/ssor.h"#include "itl/gmres.h"/*  In thsi example, we show how to use GMRES(m) algorithm, the output should be:iteration 0: resid 1iteration 1: resid 0.119438iteration 2: resid 0.00870971iteration 3: resid 0.00206774iteration 4: resid 1.1131e-16iteration 4: resid 3.05851e-16finished! error code = 04 iterations3.05851e-16 final residual     1      2      0      0      3   x          0.205847  =       1     4      5      0      6      0   x         0.0419363  =       1     0      7      8      0      9   x         -0.178049  =       1     0      0     10     11     12   x       -0.00551162  =       1     0      0     13      0     14   x           0.23676  =       1*/using namespace mtl;using namespace itl;typedef  double Type;//begintypedef matrix< Type,                 rectangle<>, 	        array< compressed<> >,                 row_major >::type Matrix;//endint main (int , char* []) {  int max_iter = 50;  //begin  Matrix A(5, 5);  //end  A(0, 0) = 1.0;  A(0, 1) = 2.0;  A(0, 4) = 3.0;  A(1, 0) = 4.0;  A(1, 1) = 5.0;  A(1, 3) = 6.0;  A(2, 1) = 7.0;  A(2, 2) = 8.0;  A(2, 4) = 9.0;  A(3, 2) = 10.;  A(3, 3) = 11.;  A(3, 4) = 12.;  A(4, 2) = 13.;   A(4, 4) = 14.;  dense1D<Type> x(A.nrows(), Type(0));  dense1D<Type> b(A.ncols());  for (dense1D<Type>::iterator i=b.begin(); i!=b.end(); i++)    *i = 1.;  //begin  //SSOR preconditioner  SSOR<Matrix> precond(A);  SSOR<Matrix>::Precond p = precond();  dense1D<Type> b2(A.ncols());  p.solve(b, b2); //gmres needs teh preconditioned b to pass into iter object.  //iteration  noisy_iteration<double> iter(b2, max_iter, 1e-6);  //gmres algorithm  gmres(A, x, b, p, 10, iter); //restart constant: 10  //end  //verify the result  dense1D<Type> b1(A.ncols());  mult(A, x, b1);  add(b1, scaled(b, -1.), b1);  if ( two_norm(b1) < 1.e-6) { //output    for (int i=0; i<5; i++) {      for (int j=0; j<5; j++) {	std::cout.width(6);	std::cout << A(i, j) << " ";      }      std::cout << "  x  ";      std::cout.width(16);      std::cout << x[i] << "  =  ";      std::cout.width(6);      std::cout << b[i] << std::endl;    }  } else {    std::cout << "Residual " << iter.resid() << std::endl;  }  return 0;  }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -