source:
issm/oecreview/Archive/14312-15392/ISSM-15052-15053.diff
Last change on this file was 15393, checked in by , 12 years ago | |
---|---|
File size: 4.4 KB |
-
../trunk-jpl/src/c/toolkits/adolc/adolcincludes.h
1 /* \file adolcincludes.h 2 * \brief all includes for ADOLC layer 3 */ 4 5 #ifndef _ADOLC_PATCHES_INCLUDES_H_ 6 #define _ADOLC_PATCHES_INCLUDES_H_ 7 8 #include "./AdolcEdf.h" 9 10 #endif -
../trunk-jpl/src/c/toolkits/adolc/AdolcEdf.h
1 /* 2 * adolc_edf.h 3 * 4 * Created on: Jun 26, 2012 5 * Author: utke 6 */ 7 8 #ifndef _ADOLC_EDF_H_ 9 #define _ADOLC_EDF_H_ 10 11 #ifdef HAVE_CONFIG_H 12 #include <config.h> 13 #else 14 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 15 #endif 16 17 #if defined(_HAVE_ADOLC_) && !defined(_WRAPPERS_) 18 19 struct Adolc_edf { 20 ext_diff_fct *myEDF_for_solverx_p; 21 Adolc_edf() : myEDF_for_solverx_p(0) {} 22 inline friend std::ostream& operator << ( ostream&, const Adolc_edf& ); 23 }; 24 25 std::ostream& operator << ( std::ostream& out, const Adolc_edf& a) { 26 out << a.myEDF_for_solverx_p; 27 return out; 28 } 29 30 #endif 31 32 #endif -
../trunk-jpl/src/c/toolkits/gsl/DenseGslSolve.cpp
10 10 #endif 11 11 12 12 #include "../../shared/shared.h" 13 #include "../ ../classes/AdolcEdf.h"13 #include "../adolc/adolcincludes.h" 14 14 #include "../../classes/Params/GenericParam.h" 15 15 #include "../../classes/Params/Parameters.h" 16 16 #include "./gslincludes.h" -
../trunk-jpl/src/c/toolkits/toolkits.h
27 27 #include "./gsl/gslincludes.h" 28 28 #endif 29 29 30 #ifdef _HAVE_ADOLC_ 31 #include "./adolc/adolcincludes.h" 32 #endif 33 34 #ifdef _HAVE_TRIANGLE_ 30 35 #include "./triangle/triangleincludes.h" 36 #endif 37 31 38 #include "./objects/toolkitobjects.h" 32 39 #include "./toolkitsenums.h" 33 40 #include "./issm/issmtoolkit.h" -
../trunk-jpl/src/c/Makefile.am
59 59 ./classes/Segment.h\ 60 60 ./classes/Vertex.h\ 61 61 ./classes/Vertex.cpp\ 62 ./classes/AdolcEdf.h\63 62 ./classes/Hook.h\ 64 63 ./classes/Hook.cpp\ 65 64 ./classes/Patch.h\ … … 225 224 ./toolkits/issm/IssmVec.h\ 226 225 ./toolkits/issm/IssmSolver.h\ 227 226 ./toolkits/issm/IssmSolver.cpp\ 227 ./toolkits/adolc/adolcincludes.h\ 228 ./toolkits/adolc/AdolcEdf.h\ 228 229 ./toolkits/ToolkitOptions.h\ 229 230 ./toolkits/ToolkitOptions.cpp\ 230 231 ./toolkits/triangle/triangleincludes.h\ -
../trunk-jpl/src/c/classes/AdolcEdf.h
1 /*2 * adolc_edf.h3 *4 * Created on: Jun 26, 20125 * Author: utke6 */7 8 #ifndef _ADOLC_EDF_H_9 #define _ADOLC_EDF_H_10 11 #ifdef HAVE_CONFIG_H12 #include <config.h>13 #else14 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"15 #endif16 17 #if defined(_HAVE_ADOLC_) && !defined(_WRAPPERS_)18 19 struct Adolc_edf {20 ext_diff_fct *myEDF_for_solverx_p;21 Adolc_edf() : myEDF_for_solverx_p(0) {}22 inline friend std::ostream& operator << ( ostream&, const Adolc_edf& );23 };24 25 std::ostream& operator << ( std::ostream& out, const Adolc_edf& a) {26 out << a.myEDF_for_solverx_p;27 return out;28 }29 30 #endif31 32 #endif -
../trunk-jpl/src/c/classes/classes.h
156 156 #include "./Update.h" 157 157 #include "./FemModel.h" 158 158 #include "./GiaDeflectionCoreArgs.h" 159 #include "./AdolcEdf.h"160 159 #include "./RiftStruct.h" 161 160 162 161 #endif
Note:
See TracBrowser
for help on using the repository browser.