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

📄 krylovsolver.h

📁 Dolfin provide a high-performance linear algebra library
💻 H
字号:
// Copyright (C) 2007 Garth N. Wells.// Licensed under the GNU LGPL Version 2.1.//// First added:  2007-07-03// Last changed: 2007-07-11#ifndef __KRYLOV_SOLVER_H#define __KRYLOV_SOLVER_H#include <dolfin/LinearSolver.h>#include <dolfin/Parametrized.h>#include <dolfin/Vector.h>#include <dolfin/Matrix.h>#include <dolfin/KrylovMethod.h>#include <dolfin/Preconditioner.h>#include <dolfin/default_la_types.h>namespace dolfin{  class KrylovSolver : public LinearSolver, public Parametrized  {    /// This class defines an interface for a Krylov solver. The underlying     /// Krylov solver type is defined in default_type.h.        public:      KrylovSolver() : solver() {}      KrylovSolver(KrylovMethod method) : solver(method, default_pc) {}      KrylovSolver(KrylovMethod method, Preconditioner pc)                   : solver(method, pc) {}      ~KrylovSolver() {}      inline uint solve(const Matrix& A, Vector& x, const Vector& b)        { return solver.solve(A.mat(), x.vec(), b.vec()); }    private:      DefaultKrylovSolver solver;  };}#endif

⌨️ 快捷键说明

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