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

📄 epetralusolver.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 "EpetraMatrix.h"#include "EpetraVector.h"#include "EpetraLUSolver.h"using namespace dolfin;//-----------------------------------------------------------------------------EpetraLUSolver::EpetraLUSolver() {}//-----------------------------------------------------------------------------EpetraLUSolver::~EpetraLUSolver() {}//-----------------------------------------------------------------------------dolfin::uint EpetraLUSolver::solve(const EpetraMatrix&A, EpetraVector& x, const EpetraVector& b){  error("EpetraLUSolver::solve not implemented");   return 0; }//-----------------------------------------------------------------------------void EpetraLUSolver::disp() const {  error("EpetraLUSolver::disp not implemented"); }#endif 

⌨️ 快捷键说明

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