Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
AlephIndexing.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/* AlephIndexing.h (C) 2012~2013 */
9/* */
10/*---------------------------------------------------------------------------*/
11#ifndef ALEPH_INDEXING_H
12#define ALEPH_INDEXING_H
13/*---------------------------------------------------------------------------*/
14/*---------------------------------------------------------------------------*/
15
16ARCANE_BEGIN_NAMESPACE
17
18/*---------------------------------------------------------------------------*/
19/*---------------------------------------------------------------------------*/
20
24class ARCANE_ALEPH_EXPORT AlephIndexing : public TraceAccessor
25{
26 public:
29
30 public:
31 Int32 updateKnownItems(VariableItemInt32*, const Item&);
32 Int32 findWhichLidFromMapMap(IVariable*, const Item&);
33 Integer get(const VariableRef&, const ItemEnumerator&);
34 Integer get(const VariableRef&, const Item&);
35 void buildIndexesFromAddress(void);
36 void nowYouCanBuildTheTopology(AlephMatrix*, AlephVector*, AlephVector*);
37
38 private:
39 Integer localKnownItems(void);
40
41 private:
42 AlephKernel* m_kernel;
43 ISubDomain* m_sub_domain;
44 Integer m_current_idx;
45 Int32 m_known_items_own;
46 UniqueArray<Int32*> m_known_items_all_address;
47 typedef std::map<IVariable*, VariableItemInt32*> VarMapIdx;
48 VarMapIdx m_var_map_idx;
49};
50
51/*---------------------------------------------------------------------------*/
52/*---------------------------------------------------------------------------*/
53
54ARCANE_END_NAMESPACE
55
56/*---------------------------------------------------------------------------*/
57/*---------------------------------------------------------------------------*/
58
59#endif
Gestionaire d'indexing.
Matrice d'un système linéaire.
Definition AlephMatrix.h:33
Vecteur d'un système linéaire.
Definition AlephVector.h:33
Interface du gestionnaire d'un sous-domaine.
Definition ISubDomain.h:74
Interface d'une variable.
Definition IVariable.h:54
Enumérateur sur une liste d'entités.
Classe de base d'un élément de maillage.
Definition Item.h:83
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Référence à une variable.
Definition VariableRef.h:56