Arcane  v3.14.10.0
Documentation utilisateur
Chargement...
Recherche...
Aucune correspondance
CheckpointInfo.cc
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/* CheckpointInfo.cc (C) 2000-2018 */
9/* */
10/* Informations sur une protection. */
11/*---------------------------------------------------------------------------*/
12/*---------------------------------------------------------------------------*/
13
14#include "arcane/CheckpointInfo.h"
15#include "arcane/ArcaneTypes.h"
16
17/*---------------------------------------------------------------------------*/
18/*---------------------------------------------------------------------------*/
19
20namespace Arcane
21{
22
23/*---------------------------------------------------------------------------*/
24/*---------------------------------------------------------------------------*/
25
26CheckpointInfo::
27CheckpointInfo()
28: m_nb_replication(0)
29, m_nb_sub_domain(0)
30, m_checkpoint_time(0.0)
31, m_checkpoint_index(-1)
32, m_sub_domain_rank(A_NULL_RANK)
33, m_replication_rank(-1)
34, m_is_restart(false)
35{
36}
37
38/*---------------------------------------------------------------------------*/
39/*---------------------------------------------------------------------------*/
40
41} // End namespace Arcane
42
43/*---------------------------------------------------------------------------*/
44/*---------------------------------------------------------------------------*/
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-