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

📄 nonlinearproblem.cpp

📁 利用C
💻 CPP
字号:
// Copyright (C) 2006 Garth N. Wells.// Licensed under the GNU LGPL Version 2.1.//// First added:  2005-10-24// Last changed: 2006-09-02#include <dolfin/log/dolfin_log.h>#include "NonlinearProblem.h"using namespace dolfin;//-----------------------------------------------------------------------------NonlinearProblem::NonlinearProblem(){  // Do nothing}//-----------------------------------------------------------------------------NonlinearProblem::~NonlinearProblem(){  // Do nothing }//-----------------------------------------------------------------------------void NonlinearProblem::form(GenericMatrix& A, GenericVector& b, const GenericVector& x){  error("Nonlinear problem update for F(u) and J  has not been supplied by user.");}//-----------------------------------------------------------------------------void NonlinearProblem::F(GenericVector& b, const GenericVector& x){  error("Nonlinear problem update for F(u)  has not been supplied by user.");}//-----------------------------------------------------------------------------void NonlinearProblem::J(GenericMatrix& A, const GenericVector& x){  error("Nonlinear problem update for Jacobian has not been supplied by user.");}//-----------------------------------------------------------------------------

⌨️ 快捷键说明

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