escript  Revision_Unversioneddirectory
Ripley.h
Go to the documentation of this file.
1 
2 /*****************************************************************************
3 *
4 * Copyright (c) 2003-2016 by The University of Queensland
5 * http://www.uq.edu.au
6 *
7 * Primary Business: Queensland, Australia
8 * Licensed under the Apache License, version 2.0
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Development until 2012 by Earth Systems Science Computational Center (ESSCC)
12 * Development 2012-2013 by School of Earth Sciences
13 * Development from 2014 by Centre for Geoscience Computing (GeoComp)
14 *
15 *****************************************************************************/
16 
17 #ifndef __RIPLEY_RIPLEY_H__
18 #define __RIPLEY_RIPLEY_H__
19 
20 /*****************************************************************************
21  * Ripley is a FE domain library with regular hexagonal/rectangular
22  * elements
23  ****************************************************************************/
24 
25 #include <ripley/system_dep.h>
26 
27 #include <esysUtils/Esys_MPI.h>
28 
29 #include <boost/shared_ptr.hpp>
30 #include <list>
31 #include <map>
32 #include <string>
33 #include <vector>
34 
35 namespace ripley {
36 
37 typedef std::pair<index_t,index_t> IndexPair;
38 typedef std::vector<index_t> IndexVector;
39 typedef std::vector<double> DoubleVector;
40 typedef std::vector<Esys_MPI_rank> RankVector;
41 typedef std::map<std::string,int> TagMap;
42 
43 enum {
46  Nodes=3,
53 };
54 
55 } // namespace ripley
56 
57 #endif /* __RIPLEY_RIPLEY_H__ */
58 
Definition: Ripley.h:49
Definition: Ripley.h:52
Definition: Ripley.h:50
std::map< std::string, int > TagMap
Definition: Ripley.h:41
std::pair< index_t, index_t > IndexPair
Definition: Ripley.h:37
Definition: Ripley.h:45
std::vector< index_t > IndexVector
Definition: Ripley.h:38
Definition: Ripley.h:48
std::vector< Esys_MPI_rank > RankVector
Definition: Ripley.h:40
Definition: Ripley.h:46
Definition: Ripley.h:51
Definition: ripley/src/AbstractAssembler.h:25
Definition: Ripley.h:44
Definition: Ripley.h:47
std::vector< double > DoubleVector
Definition: Ripley.h:39