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

📄 mpimeshcommunicator.cpp

📁 Dolfin provide a high-performance linear algebra library
💻 CPP
字号:
// Copyright (C) 2007 Garth N. Wells.// Licensed under the GNU LGPL Version 2.1.//// First added:  2007-05-30// Last changed:#include <dolfin/dolfin_log.h>#include <dolfin/Mesh.h>#include <dolfin/MeshFunction.h>#include <dolfin/MPIMeshCommunicator.h>using namespace dolfin;//-----------------------------------------------------------------------------MPIMeshCommunicator::MPIMeshCommunicator(){  // Do nothing}//-----------------------------------------------------------------------------MPIMeshCommunicator::~MPIMeshCommunicator(){  // Do nothing}//-----------------------------------------------------------------------------void MPIMeshCommunicator::broadcast(const Mesh& mesh){  error("MPI broadcast of meshes not yet implemented");}//-----------------------------------------------------------------------------void MPIMeshCommunicator::receive(Mesh& mesh){  error("MPI receival of meshes not yet implemented");}//-----------------------------------------------------------------------------void MPIMeshCommunicator::broadcast(const MeshFunction<unsigned int>& mesh_function){  error("MPI broadcast of a MeshFunction not yet implemented");}//-----------------------------------------------------------------------------void MPIMeshCommunicator::receive(MeshFunction<unsigned int>& mesh_function){  error("MPI receival of a MeshFunction not yet implemented");}//-----------------------------------------------------------------------------

⌨️ 快捷键说明

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