ESScript  Revision_
Functions.h
Go to the documentation of this file.
1 
2 /*****************************************************************************
3 *
4 * Copyright (c) 2003-2013 by University of Queensland
5 * http://www.uq.edu.au
6 *
7 * Primary Business: Queensland, Australia
8 * Licensed under the Open Software License version 3.0
9 * http://www.opensource.org/licenses/osl-3.0.php
10 *
11 * Development until 2012 by Earth Systems Science Computational Center (ESSCC)
12 * Development since 2012 by School of Earth Sciences
13 *
14 *****************************************************************************/
15 
16 
17 #ifndef INC_PASO_FUNCTIONS
18 #define INC_PASO_FUNCTIONS
19 
20 
21 #include "Common.h"
22 #include "esysUtils/Esys_MPI.h"
23 #include "performance.h"
24 
27 };
28 
30 
31 typedef struct Paso_Function {
35  double *b;
36  double *tmp;
37  void *more;
39 
40 err_t Paso_FunctionDerivative(double* J0w, const double* w, Paso_Function* F, const double *f0, const double *x0, double* setoff, Paso_Performance *pp);
41 err_t Paso_FunctionCall(Paso_Function * F,double* value, const double* arg, Paso_Performance *pp);
43 
44 #endif