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

📄 mpimeshcommunicator.h

📁 利用C
💻 H
字号:
// Copyright (C) 2007 Garth N. Wells.// Licensed under the GNU LGPL Version 2.1.//// Modified by: Magnus Vikstrøm, 2007.//// First added:  2007-05-30// Last changed: 2007-12-02#ifndef __MPI_MESH_COMMUNICATOR_H#define __MPI_MESH_COMMUNICATOR_H#include "MeshFunction.h"namespace dolfin{  class Mesh;    /// The class facilitates the transfer of a mesh between processes using MPI    class MPIMeshCommunicator  {  public:        /// Constructor    MPIMeshCommunicator();    /// Destructor    ~MPIMeshCommunicator();    /// Broadcast mesh to all processes    static void broadcast(const Mesh& mesh);    /// Receive mesh    static void receive(Mesh& mesh);        /// Broadcast mesh function to all processes    static void broadcast(const MeshFunction<unsigned int>& mesh_function);    /// Receive mesh function    static void receive(MeshFunction<unsigned int>& mesh_function);  };}#endif

⌨️ 快捷键说明

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