source:
issm/oecreview/Archive/24307-24683/ISSM-24458-24459.diff
Last change on this file was 24684, checked in by , 5 years ago | |
---|---|
File size: 3.3 KB |
-
../trunk-jpl/src/c/shared/Bamg/Abs.h
2 2 #define _BAMGABS_H_ 3 3 4 4 namespace bamg { 5 6 5 template<class T> inline T Abs (const T &a){return a <0 ? -a : a;} 7 8 6 } 9 7 #endif -
../trunk-jpl/src/c/shared/Bamg/BigPrimeNumber.h
2 2 #define _BIGPRIMENUMBER_H_ 3 3 4 4 namespace bamg { 5 6 5 long BigPrimeNumber(long n); 7 8 6 } 9 7 #endif -
../trunk-jpl/src/c/shared/Bamg/OppositeAngle.h
6 6 /*Return the opposite angle modulo 2 Pi*/ 7 7 namespace bamg { 8 8 inline float OppositeAngle(float a){return a<0 ? PI+a:a-PI;} 9 inline double OppositeAngle(double a){return a<0 ? PI+a:a-PI;}9 inline double OppositeAngle(double a){return a<0 ? PI+a:a-PI;} 10 10 } 11 11 12 12 #endif -
../trunk-jpl/src/c/shared/Bamg/Exchange.h
1 1 #ifndef _EXCHANGE_H_ 2 2 #define _EXCHANGE_H_ 3 3 4 template<class T> inline void Exchange (T &a,T &b){T c=a;a=b;b=c;}4 template<class T> inline void Exchange(T &a,T &b){T c=a;a=b;b=c;} 5 5 6 6 #endif -
../trunk-jpl/src/c/classes/IoModel.h
14 14 class Elements; 15 15 class Inputs2; 16 16 class Param; 17 class Option ;17 class Options; 18 18 19 19 class IoConstant { /*holds single IssmDouble, int, bool and char from input*/ 20 20 public: -
../trunk-jpl/src/c/analyses/StressbalanceAnalysis.cpp
1 1 #include "./StressbalanceAnalysis.h" 2 2 #include "../toolkits/toolkits.h" 3 #include "../classes/classes.h"4 #include "../shared/shared.h"5 #include "../modules/modules.h"6 3 #include "../solutionsequences/solutionsequences.h" 4 #include "../classes/IoModel.h" 5 #include "../classes/FemModel.h" 6 #include "../classes/Constraints/Constraints.h" 7 #include "../classes/Constraints/Constraint.h" 8 #include "../classes/Constraints/SpcStatic.h" 9 #include "../classes/Params/Parameters.h" 10 #include "../classes/Nodes.h" 11 #include "../classes/Node.h" 12 #include "../classes/Elements/Elements.h" 13 #include "../classes/Elements/Element.h" 14 #include "../modules/ModelProcessorx/ModelProcessorx.h" 15 #include "../modules/IoModelToConstraintsx/IoModelToConstraintsx.h" 16 #include "../modules/InputUpdateFromConstantx/InputUpdateFromConstantx.h" 17 #include "../modules/SetActiveNodesLSMx/SetActiveNodesLSMx.h" 7 18 #include "../cores/cores.h" 8 19 9 20 //#define FSANALYTICAL 10
Note:
See TracBrowser
for help on using the repository browser.