Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
IExtraGhostCellsBuilder.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2022 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
4// See the top-level COPYRIGHT file for details.
5// SPDX-License-Identifier: Apache-2.0
6//-----------------------------------------------------------------------------
7/*---------------------------------------------------------------------------*/
8/* IExtraGhostCellsBuilder.h (C) 2000-2022 */
9/* */
10/* Interface d'un constructeur de mailles fantômes "extraordinaires" */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_IEXTRAGHOSTCELLSBUILDER_H
13#define ARCANE_IEXTRAGHOSTCELLSBUILDER_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/ArcaneTypes.h"
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
22namespace Arcane
23{
24
25/*---------------------------------------------------------------------------*/
26/*---------------------------------------------------------------------------*/
38{
39 public:
40
42
43 public:
44
51 virtual void computeExtraCellsToSend() =0;
52
59 virtual Int32ConstArrayView extraCellsToSend(Int32 rank) const =0;
60};
61
62/*---------------------------------------------------------------------------*/
63/*---------------------------------------------------------------------------*/
64
65} // End namespace Arcane
66
67/*---------------------------------------------------------------------------*/
68/*---------------------------------------------------------------------------*/
69
70#endif
71
Interface d'un constructeur de mailles fantômes "extraordinaires"
virtual void computeExtraCellsToSend()=0
Calcul des mailles "extraordinaires" à envoyer.
virtual ~IExtraGhostCellsBuilder()
Libère les ressources.
virtual Int32ConstArrayView extraCellsToSend(Int32 rank) const =0
Indices locaux des mailles "extraordinaires" pour envoi.
Vue constante d'un tableau de type T.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-