escript  Revision_
LapackInverseHelper.h
Go to the documentation of this file.
1 
2 /*****************************************************************************
3 *
4 * Copyright (c) 2009-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 LAPACKINVERSEHELPER_H
18 #define LAPACKINVERSEHELPER_H
19 
20 namespace escript
21 {
22 
27 {
28 public:
31  int invert(double* matrix);
32 private:
33  int* piv;
34  double* work;
35  int N;
36  int lwork;
37 };
38 
39 } // end of escript namespace
40 
41 #endif
42 
~LapackInverseHelper()
Definition: LapackInverseHelper.cpp:68
LapackInverseHelper(int N)
Definition: LapackInverseHelper.cpp:40
Definition: AbstractContinuousDomain.cpp:22
double * work
Definition: LapackInverseHelper.h:34
Definition: LapackInverseHelper.h:26
int invert(double *matrix)
Definition: LapackInverseHelper.cpp:81
int * piv
Definition: LapackInverseHelper.h:33
int N
Definition: LapackInverseHelper.h:35
int lwork
Definition: LapackInverseHelper.h:36