escript  Revision_
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 <escript/EsysMPI.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 
41 
42 typedef std::pair<index_t,index_t> IndexPair;
43 typedef std::vector<index_t> IndexVector;
44 typedef std::vector<real_t> DoubleVector;
45 typedef std::vector<int> RankVector;
46 typedef std::map<std::string,int> TagMap;
47 
48 enum {
51  Nodes=3,
58 };
59 
60 } // namespace ripley
61 
62 #endif /* __RIPLEY_RIPLEY_H__ */
63 
Definition: Ripley.h:52
Definition: Ripley.h:55
Definition: Ripley.h:53
std::vector< int > RankVector
Definition: Ripley.h:45
Definition: Ripley.h:51
Definition: Ripley.h:56
std::map< std::string, int > TagMap
Definition: Ripley.h:46
std::pair< index_t, index_t > IndexPair
Definition: Ripley.h:42
int index_t
type for array/matrix indices used both globally and on each rank
Definition: DataTypes.h:59
std::vector< index_t > IndexVector
Definition: Ripley.h:43
Definition: Ripley.h:50
Definition: Ripley.h:57
Definition: Ripley.h:54
std::complex< real_t > cplx_t
complex data type
Definition: DataTypes.h:53
Definition: ripley/src/AbstractAssembler.h:25
std::vector< real_t > DoubleVector
Definition: Ripley.h:44
Definition: Ripley.h:49
double real_t
type of all real-valued scalars in escript
Definition: DataTypes.h:50
index_t dim_t
Definition: DataTypes.h:64