Scippy

UG

Ubiquity Generator framework

scipDiffParamSetMpi.h
Go to the documentation of this file.
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2 /* */
3 /* This file is part of the program and software framework */
4 /* UG --- Ubquity Generator Framework */
5 /* */
6 /* Copyright Written by Yuji Shinano <shinano@zib.de>, */
7 /* Copyright (C) 2021 by Zuse Institute Berlin, */
8 /* licensed under LGPL version 3 or later. */
9 /* Commercial licenses are available through <licenses@zib.de> */
10 /* */
11 /* This code is free software; you can redistribute it and/or */
12 /* modify it under the terms of the GNU Lesser General Public License */
13 /* as published by the Free Software Foundation; either version 3 */
14 /* of the License, or (at your option) any later version. */
15 /* */
16 /* This program is distributed in the hope that it will be useful, */
17 /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
18 /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
19 /* GNU Lesser General Public License for more details. */
20 /* */
21 /* You should have received a copy of the GNU Lesser General Public License */
22 /* along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 /* */
24 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
25 
26 /**@file scipDiffParamSetMpi.h
27  * @brief ScipDiffParamSet extension for MPI communication.
28  * @author Yuji Shinano
29  *
30  *
31  *
32  */
33 
34 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
35 
36 
37 #ifndef __SCIP_DIFF_PARAM_SET_MPI_H__
38 #define __SCIP_DIFF_PARAM_SET_MPI_H__
39 
40 #include <mpi.h>
41 #include "ug/paraComm.h"
42 #include "scipDiffParamSet.h"
43 
44 namespace ParaSCIP
45 {
46 
47 /** ScipDiffParamSet class */
49 {
50 
51  /** create scipDiffParamSetPreType */
52  MPI_Datatype createDatatype1();
53  /** create scipDiffParamSetType */
54  MPI_Datatype createDatatype2(bool memAllocNecessary);
55 
56 public:
57  /** constructor */
59  )
60  {
61  }
62 
63  /** constructor with scip */
65  SCIP *scip
66  )
67  : ScipDiffParamSet(scip)
68  {
69  }
70 
71  /** destructor */
73  )
74  {
75  }
76 
77  /** broadcast scipDiffParamSet */
78  int bcast(UG::ParaComm *comm, int root);
79 
80  /** send scipDiffParamSet to the rank */
81  int send(UG::ParaComm *comm, int destination);
82 
83  /** receive scipDiffParamSet from the source rank */
84  int receive(UG::ParaComm *comm, int source);
85 
86 };
87 
89 
90 }
91 
92 #endif // _SCIP_DIFF_PARAM_SET_MPI_H__
93 
static ScipParaCommTh * comm
Definition: fscip.cpp:73
int send(UG::ParaComm *comm, int destination)
ScipDiffParamSet * ScipDiffParamSetPtr
Base class of communicator for UG Framework.
SCIP parameter set to be transferred ( Only keep difference between default settings )...
MPI_Datatype createDatatype2(bool memAllocNecessary)
int bcast(UG::ParaComm *comm, int root)
int receive(UG::ParaComm *comm, int source)
Base class of communicator object.
Definition: paraComm.h:101