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

📄 epetrapreconditioner.cpp

📁 利用C
💻 CPP
字号:
// Copyright (C) 2008 Kent-Andre Mardal.// Licensed under the GNU LGPL Version 2.1.//// Last changed: 2008-05-16#ifdef HAS_TRILINOS#include "EpetraPreconditioner.h"using namespace dolfin;//-----------------------------------------------------------------------------void EpetraPreconditioner::setType(PreconditionerType type) {  prec_type = type; }//-----------------------------------------------------------------------------void EpetraPreconditioner::init(const EpetraMatrix& a) {   error("EpetraPreconditioner::init : not implemented "); }//-----------------------------------------------------------------------------void EpetraPreconditioner::solve(EpetraVector& x, const EpetraVector& b) {   error("EpetraPreconditioner::solve: not implemented "); }//-----------------------------------------------------------------------------#endif 

⌨️ 快捷键说明

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