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

📄 epetrapreconditioner.h

📁 利用C
💻 H
字号:
// Copyright (C) 2008 Kent-Andre Mardal.// Licensed under the GNU LGPL Version 2.1.//// Last changed: 2008-05-16#ifdef HAS_TRILINOS#ifndef __EPETRA_PRECONDITIONER_SOLVER_H#define __EPETRA_PRECONDITIONER_SOLVER_H#include <dolfin/common/types.h>#include <dolfin/parameter/Parametrized.h>#include "SolverType.h"#include "PreconditionerType.h"#endif namespace dolfin {  class EpetraVector;   class EpetraMatrix;   /// This class specifies the interface for user-defined Krylov  /// method EpetraPreconditioners. A user wishing to implement her own  /// EpetraPreconditioner needs only supply a function that approximately  /// solves the linear system given a right-hand side.  class EpetraPreconditioner : public Parametrized    {    public:     /// Constructor    EpetraPreconditioner() {};    /// Destructor    virtual ~EpetraPreconditioner() {};    /// Set the Preconditioner type (amg, ilu, etc.)    void setType(PreconditionerType type);     /// Initialise preconditioner     virtual void init(const EpetraMatrix& A);    /// Solve linear system (M^-1)Ax = y    virtual void solve(EpetraVector& x, const EpetraVector& b);    private:     PreconditionerType prec_type;   }; }#endif 

⌨️ 快捷键说明

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