Changeset 9320
- Timestamp:
- 08/12/11 11:21:41 (14 years ago)
- Location:
- issm/trunk/src
- Files:
-
- 239 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk/src/c/Container/Constraints.cpp ¶
r5772 r9320 6 6 /*Headers: {{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/Container/DataSet.cpp ¶
r9299 r9320 6 6 /*Headers: {{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/Container/Elements.cpp ¶
r9211 r9320 6 6 /*Headers: {{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/Container/Inputs.cpp ¶
r8363 r9320 6 6 /*Headers: {{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/Container/Loads.cpp ¶
r6411 r9320 6 6 /*Headers: {{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/Container/Materials.cpp ¶
r6411 r9320 6 6 /*Headers: {{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/Container/Nodes.cpp ¶
r8809 r9320 6 6 /*Headers: {{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/Container/Options.cpp ¶
r8910 r9320 6 6 /*Headers: {{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/Container/Parameters.cpp ¶
r8600 r9320 6 6 /*Headers: {{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/Container/Results.cpp ¶
r8655 r9320 6 6 /*Headers: {{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/Container/Vertices.cpp ¶
r6231 r9320 6 6 /*Headers: {{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/include/macros.h ¶
r8813 r9320 10 10 11 11 #ifdef HAVE_CONFIG_H 12 #include "config.h"12 #include <config.h> 13 13 #else 14 14 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/include/types.h ¶
r3775 r9320 8 8 9 9 #ifdef HAVE_CONFIG_H 10 #include "config.h"10 #include <config.h> 11 11 #else 12 12 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 13 13 #endif 14 14 15 #include "stdio.h"15 #include <stdio.h> 16 16 17 17 /*Define abstract type for I/O: */ -
TabularUnified issm/trunk/src/c/io/Disk/IoModelFetchData.cpp ¶
r8982 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/io/Disk/pfclose.cpp ¶
r8910 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 10 11 #include "stdio.h"11 #include <stdio.h> 12 12 #include "../../shared/shared.h" 13 13 #include "../../include/include.h" -
TabularUnified issm/trunk/src/c/io/Disk/pfopen.cpp ¶
r8910 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 10 11 #include "stdio.h"11 #include <stdio.h> 12 12 #include "../../shared/shared.h" 13 13 #include "../../include/include.h" -
TabularUnified issm/trunk/src/c/io/Matlab/FetchMatlabData.cpp ¶
r8910 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/io/Matlab/OptionParse.cpp ¶
r8910 r9320 3 3 */ 4 4 #ifdef HAVE_CONFIG_H 5 #include "config.h"5 #include <config.h> 6 6 #else 7 7 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" … … 106 106 /*loop through and process each field for the element */ 107 107 for (i=0; i<mxGetNumberOfFields(prhs[0]); i++) { 108 sprintf (namei,"%s.%s",name,mxGetFieldNameByNumber(prhs[0],i));108 sprintf_s(namei,161,"%s.%s",name,mxGetFieldNameByNumber(prhs[0],i)); 109 109 structi=mxGetFieldByNumber(prhs[0],sindex,i); 110 110 -
TabularUnified issm/trunk/src/c/io/Matlab/WriteMatlabData.cpp ¶
r8910 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/issm.h ¶
r4397 r9320 7 7 8 8 #ifdef HAVE_CONFIG_H 9 #include "config.h"9 #include <config.h> 10 10 #else 11 11 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/AverageOntoPartitionx/AverageOntoPartitionx.cpp ¶
r8263 r9320 5 5 6 6 #ifdef HAVE_CONFIG_H 7 #include "config.h"7 #include <config.h> 8 8 #else 9 9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/Chacox/Chacox.h ¶
r4639 r9320 7 7 8 8 #ifdef HAVE_CONFIG_H 9 #include "config.h"9 #include <config.h> 10 10 #else 11 11 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/Chacox/user_params.cpp ¶
r4648 r9320 9 9 10 10 #ifdef HAVE_CONFIG_H 11 #include "config.h"11 #include <config.h> 12 12 #else 13 13 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/ConstraintsStatex/ThermalConstraintsState.cpp ¶
r8408 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/ConstraintsStatex/ThermalIsPresent.cpp ¶
r8410 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/ContourToMeshx/ContourToMeshx.cpp ¶
r3332 r9320 3 3 4 4 #ifdef HAVE_CONFIG_H 5 #include "config.h"5 #include <config.h> 6 6 #else 7 7 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/ContourToMeshx/ContourToMeshxt.cpp ¶
r8303 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/DakotaResponsesx/DakotaResponsesx.cpp ¶
r9010 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/InterpFromGridToMeshx/InterpFromGridToMeshx.cpp ¶
r8224 r9320 5 5 /*Include {{{*/ 6 6 #ifdef HAVE_CONFIG_H 7 #include "config.h"7 #include <config.h> 8 8 #else 9 9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/ModelProcessorx/CreateDataSets.cpp ¶
r9218 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/ModelProcessorx/CreateNumberNodeToElementConnectivity.cpp ¶
r6412 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/ModelProcessorx/CreateSingleNodeToElementConnectivity.cpp ¶
r6412 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/ModelProcessorx/ElementsAndVerticesPartitioning.cpp ¶
r8926 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/ModelProcessorx/ModelProcessorx.cpp ¶
r8429 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/ModelProcessorx/NodesPartitioning.cpp ¶
r8926 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/ModelProcessorx/SortDataSets.cpp ¶
r4218 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/ModelProcessorx/UpdateCounters.cpp ¶
r4387 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/OutputResultsx/OutputResultsx.cpp ¶
r9211 r9320 5 5 6 6 #ifdef HAVE_CONFIG_H 7 #include "config.h"7 #include <config.h> 8 8 #else 9 9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 10 10 #endif 11 11 12 #include "stdio.h"12 #include <stdio.h> 13 13 #include "./OutputResultsx.h" 14 14 #include "../../Container/Container.h" -
TabularUnified issm/trunk/src/c/modules/OutputResultsx/OutputResultsx.h ¶
r6372 r9320 7 7 8 8 #ifdef HAVE_CONFIG_H 9 #include "config.h"9 #include <config.h> 10 10 #else 11 11 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/ParsePetscOptionsx/ParsePetscOptionsx.cpp ¶
r8330 r9320 6 6 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/Qmux/DakotaFree.cpp ¶
r4236 r9320 5 5 6 6 #ifdef HAVE_CONFIG_H 7 #include "config.h"7 #include <config.h> 8 8 #else 9 9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/Qmux/DakotaMPI_Bcast.cpp ¶
r4194 r9320 5 5 6 6 #ifdef HAVE_CONFIG_H 7 #include "config.h"7 #include <config.h> 8 8 #else 9 9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/Qmux/Qmux.cpp ¶
r4193 r9320 28 28 29 29 #ifdef HAVE_CONFIG_H 30 #include "config.h"30 #include <config.h> 31 31 #else 32 32 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/Qmux/SpawnCore.cpp ¶
r4439 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/Qmux/SpawnCoreParallel.cpp ¶
r8936 r9320 20 20 21 21 #ifdef HAVE_CONFIG_H 22 #include "config.h"22 #include <config.h> 23 23 #else 24 24 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/Qmux/SpawnCoreSerial.cpp ¶
r4488 r9320 6 6 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/Reduceloadx/Reduceloadx.cpp ¶
r8808 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/ResetConstraintsx/ThermalConstraintsReset.cpp ¶
r9127 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/Responsex/Responsex.cpp ¶
r9206 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/Scotchx/Scotchx.h ¶
r4712 r9320 11 11 12 12 #ifdef HAVE_CONFIG_H 13 #include "config.h"13 #include <config.h> 14 14 #else 15 15 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/Solverx/DofTypesToIndexSet.cpp ¶
r7391 r9320 8 8 9 9 #ifdef HAVE_CONFIG_H 10 #include "config.h"10 #include <config.h> 11 11 #else 12 12 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/modules/Solverx/Solverx.cpp ¶
r7391 r9320 8 8 9 9 #ifdef HAVE_CONFIG_H 10 #include "config.h"10 #include <config.h> 11 11 #else 12 12 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/Bamg/AdjacentTriangle.h ¶
r5143 r9320 18 18 19 19 //Constructors 20 AdjacentTriangle() {};20 AdjacentTriangle():a(0),t(NULL) {}; 21 21 AdjacentTriangle(Triangle* tt,int aa): t(tt),a(aa &3) {}; 22 22 -
TabularUnified issm/trunk/src/c/objects/Bamg/BamgGeom.cpp ¶
r8910 r9320 1 #include "stdio.h"1 #include <stdio.h> 2 2 #include "../objects.h" 3 3 #include "../../io/io.h" -
TabularUnified issm/trunk/src/c/objects/Bamg/BamgMesh.cpp ¶
r8910 r9320 1 #include "stdio.h"1 #include <stdio.h> 2 2 #include "../objects.h" 3 3 #include "../../io/io.h" -
TabularUnified issm/trunk/src/c/objects/Bamg/BamgOpts.cpp ¶
r8910 r9320 1 #include "stdio.h"1 #include <stdio.h> 2 2 #include "../../shared/shared.h" 3 3 #include "../../include/include.h" -
TabularUnified issm/trunk/src/c/objects/Bamg/EigenMetric.cpp ¶
r5447 r9320 10 10 /*Constructor*/ 11 11 /*FUNCTION EigenMetric::EigenMetric(const Metric M){{{1*/ 12 EigenMetric::EigenMetric(const Metric M){12 EigenMetric::EigenMetric(const Metric& M){ 13 13 /*From a metric (a11,a21,a22), get eigen values lambda1 and lambda2 and one eigen vector v*/ 14 14 15 15 /*Intermediaries*/ 16 16 double a11=M.a11,a21=M.a21,a22=M.a22; 17 double norm 1,norm2,normM;17 double normM; 18 18 double delta,b; 19 19 … … 90 90 /*}}}1*/ 91 91 /*FUNCTION EigenMetric::EigenMetric(double r1,double r2,const D2 vp1){{{1*/ 92 EigenMetric::EigenMetric(double r1,double r2,const D2 vp1): lambda1(r1),lambda2(r2),v(vp1){92 EigenMetric::EigenMetric(double r1,double r2,const D2& vp1): lambda1(r1),lambda2(r2),v(vp1){ 93 93 94 94 }/*}}}*/ -
TabularUnified issm/trunk/src/c/objects/Bamg/Metric.cpp ¶
r6412 r9320 15 15 /*Constructor/Destructor*/ 16 16 /*FUNCTION Metric::Metric(){{{1*/ 17 Metric::Metric(){18 19 }/*}}}*/20 17 /*FUNCTION Metric::Metric(double a){{{1*/ 21 18 Metric::Metric(double a): a11(1/(a*a)),a21(0),a22(1/(a*a)){ … … 26 23 27 24 }/*}}}*/ 28 /*FUNCTION Metric::Metric(const double a[3],const Metric m0, const Metric m1,const Metricm2 ){{{1*/29 Metric::Metric(const double a[3],const Metric m0, const Metric m1,const Metricm2 ){25 /*FUNCTION Metric::Metric(const double a[3],const Metric& m0, const Metric& m1,const Metric& m2 ){{{1*/ 26 Metric::Metric(const double a[3],const Metric& m0, const Metric& m1,const Metric& m2 ){ 30 27 /*Original code from Frederic Hecht <hecht@ann.jussieu.fr> (BAMG v1.01, Metric.cpp/Metric)*/ 31 28 … … 47 44 } 48 45 /*}}}1*/ 49 /*FUNCTION Metric::Metric(double a,const Metric ma, double b,const Metricmb){{{1*/50 Metric::Metric(double a,const Metric ma, double b,const Metricmb) {46 /*FUNCTION Metric::Metric(double a,const Metric& ma, double b,const Metric& mb){{{1*/ 47 Metric::Metric(double a,const Metric& ma, double b,const Metric& mb) { 51 48 /*Original code from Frederic Hecht <hecht@ann.jussieu.fr> (BAMG v1.01, Metric.cpp/EigenMetric)*/ 52 49 … … 83 80 /*}}}*/ 84 81 /*FUNCTION Metric::IntersectWith{{{1*/ 85 int Metric::IntersectWith(const Metric M2) {82 int Metric::IntersectWith(const Metric& M2) { 86 83 /*Original code from Frederic Hecht <hecht@ann.jussieu.fr> (BAMG v1.01, Metric.cpp/IntersectWith)*/ 87 84 … … 142 139 /*Intermediary*/ 143 140 /*FUNCTION LengthInterpole{{{1*/ 144 double LengthInterpole(const Metric Ma,const MetricMb, R2 AB) {141 double LengthInterpole(const Metric& Ma,const Metric& Mb, R2 AB) { 145 142 /*Original code from Frederic Hecht <hecht@ann.jussieu.fr> (BAMG v1.01, Metric.cpp/LengthInterpole)*/ 146 143 … … 225 222 */ 226 223 227 int i;228 229 224 //M1 and M2 components 230 225 double a11=M1.a11,a21=M1.a21,a22=M1.a22; … … 269 264 double s0,s1; 270 265 271 for(i =0;i<2;i++){266 for(int i=0;i<2;i++){ 272 267 /*Now, one must find the eigen vectors. For that we use the 273 268 * following property of the inner product … … 315 310 /*}}}1*/ 316 311 /*FUNCTION abscisseInterpole{{{1*/ 317 double abscisseInterpole(const Metric Ma,const MetricMb, R2 AB,double s,int optim) {312 double abscisseInterpole(const Metric& Ma,const Metric& Mb, R2 AB,double s,int optim) { 318 313 /*Original code from Frederic Hecht <hecht@ann.jussieu.fr> (BAMG v1.01, Metric.cpp/abscisseInterpole)*/ 319 314 320 315 if(!optim) LengthInterpole(Ma,Mb,AB); 321 316 double l = s* LastMetricInterpole.lab,r; 322 int j=LastMetricInterpole.opt-1 ,i=0,k;317 int j=LastMetricInterpole.opt-1; 323 318 324 319 double * L= LastMetricInterpole.L, *S = LastMetricInterpole.S; 325 320 // warning for optimisation S is the abcisse in [0:0.5] 326 321 // and L is le lenght 327 if(l<=L[0]) 328 r=2*S[0]*l/L[0]; 329 else if (l>=L[j]) 330 r=1; 331 else 332 { 333 while (j-i>1) 334 { 322 if(l<=L[0]){ 323 r=2*S[0]*l/L[0]; 324 } 325 else if (l>=L[j]){ 326 r=1; 327 } 328 else{ 329 int i=0; 330 while (j-i>1){ 331 int k; 335 332 k= (i+j)/2; 336 if(l<=L[k]) 337 j=k;// l<=L[j] 338 else 339 i=k; // L[i]<l 340 }; 341 if (i==j) 342 r = 2*S[i]; 343 else 344 r = 2*(S[i]*(L[j]-l)+ S[j]*(l-L[i]))/(L[j]-L[i]); 345 } 333 if(l<=L[k]){ 334 j=k;// l<=L[j] 335 } 336 else{ 337 i=k; // L[i]<l 338 } 339 }; 340 if (i==j){ 341 r = 2*S[i]; 342 } 343 else{ 344 r = 2*(S[i]*(L[j]-l)+ S[j]*(l-L[i]))/(L[j]-L[i]); 345 } 346 } 346 347 if (r>1 || r<0){ 347 348 _error_("r>1 || r<0"); -
TabularUnified issm/trunk/src/c/objects/Bamg/Metric.h ¶
r5489 r9320 25 25 26 26 //functions 27 Metric() ;28 Metric(const EigenMetric );27 Metric():a11(0),a21(0),a22(0){}; 28 Metric(const EigenMetric&); 29 29 Metric(double a); 30 30 Metric(double a,double b,double c); 31 Metric( double a,const Metric ma, double b,const Metricmb);32 Metric(const double a[3],const Metric m0,const Metric m1,const Metricm2 );31 Metric( double a,const Metric& ma, double b,const Metric& mb); 32 Metric(const double a[3],const Metric& m0,const Metric& m1,const Metric& m2 ); 33 33 void Echo(); 34 34 R2 mul(const R2 x)const; 35 35 double det() const; 36 int IntersectWith(const Metric M2);36 int IntersectWith(const Metric& M2); 37 37 inline void Box(double &hx,double &hy) const; 38 38 … … 62 62 63 63 //functions 64 EigenMetric(const Metric );65 EigenMetric(double r1,double r2,const D2 vp1);64 EigenMetric(const Metric& ); 65 EigenMetric(double r1,double r2,const D2& vp1); 66 66 void Echo(); 67 67 void Abs(); … … 88 88 friend double LengthInterpole(const Metric ,const Metric , R2 ); 89 89 friend double abscisseInterpole(const Metric ,const Metric , R2 ,double ,int ); 90 public: 90 91 int opt; 91 92 double lab; … … 96 97 //Functions 97 98 void SimultaneousMatrixReduction( Metric M1, Metric M2,D2xD2 &V); 98 double LengthInterpole(const Metric Ma,const MetricMb, R2 AB);99 double abscisseInterpole(const Metric Ma,const MetricMb, R2 AB,double s,int optim=0);99 double LengthInterpole(const Metric& Ma,const Metric& Mb, R2 AB); 100 double abscisseInterpole(const Metric& Ma,const Metric& Mb, R2 AB,double s,int optim=0); 100 101 101 102 //inlines … … 114 115 } 115 116 } 116 inline Metric::Metric(const EigenMetric M) {117 inline Metric::Metric(const EigenMetric& M) { 117 118 double v00=M.v.x*M.v.x; 118 119 double v11=M.v.y*M.v.y; -
TabularUnified issm/trunk/src/c/objects/Bamg/R2.h ¶
r5148 r9320 68 68 P2<R,RR> ty() {return P2<R,RR>(x.y,y.y);} 69 69 //Operators 70 P2<R,RR> operator*(const P2<R,RR> c) const {return P2<R,RR>(x.x*c.x + x.y*c.y, y.x*c.x + y.y*c.y);}70 P2<R,RR> operator*(const P2<R,RR>& c) const {return P2<R,RR>(x.x*c.x + x.y*c.y, y.x*c.x + y.y*c.y);} 71 71 P2xP2<R,RR> operator*(P2xP2<R,RR> c) const{ 72 72 return P2xP2<R,RR>(x.x*c.x.x + x.y*c.y.x, -
TabularUnified issm/trunk/src/c/objects/Bamg/Triangle.cpp ¶
r6412 r9320 9 9 10 10 /*Constructors/Destructors*/ 11 /*FUNCTION Triangle(){{{1*/ 12 Triangle::Triangle(void){ 13 14 } 15 /*}}}*/ 11 16 /*FUNCTION Triangle(Mesh *Th,long i,long j,long k) {{{1*/ 12 17 Triangle::Triangle(Mesh *Th,long i,long j,long k) { -
TabularUnified issm/trunk/src/c/objects/Bamg/Triangle.h ¶
r5401 r9320 29 29 30 30 //Constructors/Destructors 31 Triangle() {}31 Triangle(); 32 32 Triangle(Mesh *Th,long i,long j,long k); 33 33 Triangle(BamgVertex *v0,BamgVertex *v1,BamgVertex *v2); -
TabularUnified issm/trunk/src/c/objects/Bamg/VertexOnEdge.cpp ¶
r5460 r9320 10 10 11 11 /*Constructors/Destructors*/ 12 void VertexOnEdge(){}; 13 /*}}}*/ 12 14 13 15 /*Methods*/ -
TabularUnified issm/trunk/src/c/objects/Bamg/VertexOnEdge.h ¶
r5150 r9320 20 20 //Constructors 21 21 VertexOnEdge( BamgVertex * w, Edge *bw,double s) :v(w),be(bw),abcisse(s) {} 22 VertexOnEdge() {}22 VertexOnEdge(); 23 23 24 24 //Operators -
TabularUnified issm/trunk/src/c/objects/Bamg/VertexOnGeom.cpp ¶
r5573 r9320 16 16 curvilincoord=0; 17 17 gv=0; 18 ge=0; 18 19 } 19 20 /*}}}*/ … … 23 24 curvilincoord=-1; 24 25 gv=&g; 26 ge=0; 25 27 } 26 28 /*}}}*/ … … 30 32 curvilincoord=s; 31 33 ge=&g; 34 gv=0; 32 35 } 33 36 /*}}}*/ -
TabularUnified issm/trunk/src/c/objects/Bamg/VertexOnVertex.cpp ¶
r5460 r9320 12 12 /*FUNCTION VertexOnVertex::VertexOnVertex(){{{1*/ 13 13 VertexOnVertex::VertexOnVertex() { 14 14 v=NULL; 15 bv=NULL; 15 16 };/*}}}*/ 16 17 /*FUNCTION VertexOnVertex::VertexOnVertex(BamgVertex * w,BamgVertex *bw){{{1*/ -
TabularUnified issm/trunk/src/c/objects/Constraints/SpcDynamic.cpp ¶
r9302 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 10 11 #include "stdio.h"11 #include <stdio.h> 12 12 #include <string.h> 13 13 #include "../../include/include.h" -
TabularUnified issm/trunk/src/c/objects/Constraints/SpcStatic.cpp ¶
r9285 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 10 11 #include "stdio.h"11 #include <stdio.h> 12 12 #include <string.h> 13 13 #include "../../include/include.h" -
TabularUnified issm/trunk/src/c/objects/Constraints/SpcTransient.cpp ¶
r9285 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 10 11 #include "stdio.h"11 #include <stdio.h> 12 12 #include <string.h> 13 13 #include "../../include/include.h" -
TabularUnified issm/trunk/src/c/objects/Contour.cpp ¶
r8303 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/DakotaPlugin.cpp ¶
r4491 r9320 17 17 18 18 #ifdef HAVE_CONFIG_H 19 #include "config.h"19 #include <config.h> 20 20 #else 21 21 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/DofIndexing.cpp ¶
r9020 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 10 11 #include "stdio.h"11 #include <stdio.h> 12 12 #include "./objects.h" 13 13 #include <string.h> -
TabularUnified issm/trunk/src/c/objects/ElementResults/BoolElementResult.cpp ¶
r8967 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 10 11 #include "stdio.h"11 #include <stdio.h> 12 12 #include <string.h> 13 13 #include "./ElementResultLocal.h" -
TabularUnified issm/trunk/src/c/objects/ElementResults/DoubleElementResult.cpp ¶
r8967 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 10 11 #include "stdio.h"11 #include <stdio.h> 12 12 #include <string.h> 13 13 #include "./ElementResultLocal.h" -
TabularUnified issm/trunk/src/c/objects/ElementResults/PentaVertexElementResult.cpp ¶
r8967 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 10 11 #include "stdio.h"11 #include <stdio.h> 12 12 #include <string.h> 13 13 #include "./ElementResultLocal.h" -
TabularUnified issm/trunk/src/c/objects/ElementResults/TriaVertexElementResult.cpp ¶
r8967 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 10 11 #include "stdio.h"11 #include <stdio.h> 12 12 #include <string.h> 13 13 #include "./ElementResultLocal.h" -
TabularUnified issm/trunk/src/c/objects/Elements/Penta.cpp ¶
r9304 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Elements/PentaHook.cpp ¶
r4990 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Elements/PentaRef.cpp ¶
r8654 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Elements/Tria.cpp ¶
r9291 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Elements/TriaHook.cpp ¶
r4546 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Elements/TriaRef.cpp ¶
r8653 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/ExternalResults/BoolExternalResult.cpp ¶
r8224 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/ExternalResults/BoolExternalResult.h ¶
r6389 r9320 11 11 12 12 #ifdef HAVE_CONFIG_H 13 #include "config.h"13 #include <config.h> 14 14 #else 15 15 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/ExternalResults/DoubleExternalResult.cpp ¶
r8224 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/ExternalResults/DoubleExternalResult.h ¶
r6389 r9320 11 11 12 12 #ifdef HAVE_CONFIG_H 13 #include "config.h"13 #include <config.h> 14 14 #else 15 15 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/ExternalResults/DoubleMatExternalResult.cpp ¶
r8224 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/ExternalResults/DoubleMatExternalResult.h ¶
r6389 r9320 10 10 11 11 #ifdef HAVE_CONFIG_H 12 #include "config.h"12 #include <config.h> 13 13 #else 14 14 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/ExternalResults/DoubleVecExternalResult.cpp ¶
r8224 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/ExternalResults/DoubleVecExternalResult.h ¶
r6389 r9320 10 10 11 11 #ifdef HAVE_CONFIG_H 12 #include "config.h"12 #include <config.h> 13 13 #else 14 14 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/ExternalResults/ExternalResult.h ¶
r6389 r9320 11 11 12 12 #ifdef HAVE_CONFIG_H 13 #include "config.h"13 #include <config.h> 14 14 #else 15 15 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/ExternalResults/IntExternalResult.cpp ¶
r8224 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/ExternalResults/IntExternalResult.h ¶
r6389 r9320 11 11 12 12 #ifdef HAVE_CONFIG_H 13 #include "config.h"13 #include <config.h> 14 14 #else 15 15 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/ExternalResults/PetscVecExternalResult.cpp ¶
r8224 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/ExternalResults/PetscVecExternalResult.h ¶
r6389 r9320 11 11 12 12 #ifdef HAVE_CONFIG_H 13 #include "config.h"13 #include <config.h> 14 14 #else 15 15 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/ExternalResults/StringExternalResult.cpp ¶
r8224 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/ExternalResults/StringExternalResult.h ¶
r6389 r9320 11 11 12 12 #ifdef HAVE_CONFIG_H 13 #include "config.h"13 #include <config.h> 14 14 #else 15 15 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/FemModel.cpp ¶
r9002 r9320 5 5 6 6 #ifdef HAVE_CONFIG_H 7 #include "config.h"7 #include <config.h> 8 8 #else 9 9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 10 10 #endif 11 11 12 #include "stdio.h"12 #include <stdio.h> 13 13 #include "../Container/Container.h" 14 14 #include "../modules/ModelProcessorx/ModelProcessorx.h" -
TabularUnified issm/trunk/src/c/objects/Hook.cpp ¶
r6412 r9320 5 5 6 6 #ifdef HAVE_CONFIG_H 7 #include "config.h"7 #include <config.h> 8 8 #else 9 9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 10 10 #endif 11 11 12 #include "stdio.h"12 #include <stdio.h> 13 13 #include <string.h> 14 14 #include "./objects.h" -
TabularUnified issm/trunk/src/c/objects/Inputs/BoolInput.cpp ¶
r8363 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 10 11 #include "stdio.h"11 #include <stdio.h> 12 12 #include <string.h> 13 13 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Inputs/ControlInput.cpp ¶
r8386 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 10 11 #include "stdio.h"11 #include <stdio.h> 12 12 #include <string.h> 13 13 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Inputs/DatasetInput.cpp ¶
r8793 r9320 4 4 /*Headers{{{1*/ 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 10 11 #include "stdio.h"11 #include <stdio.h> 12 12 #include <string.h> 13 13 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Inputs/DoubleInput.cpp ¶
r9035 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 10 11 #include "stdio.h"11 #include <stdio.h> 12 12 #include <string.h> 13 13 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Inputs/IntInput.cpp ¶
r8363 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 10 11 #include "stdio.h"11 #include <stdio.h> 12 12 #include <string.h> 13 13 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Inputs/PentaVertexInput.cpp ¶
r8967 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 10 11 #include "stdio.h"11 #include <stdio.h> 12 12 #include <string.h> 13 13 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Inputs/TransientInput.cpp ¶
r8967 r9320 4 4 /*Headers{{{1*/ 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 10 11 #include "stdio.h"11 #include <stdio.h> 12 12 #include <string.h> 13 13 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Inputs/TriaVertexInput.cpp ¶
r8967 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 10 11 #include "stdio.h"11 #include <stdio.h> 12 12 #include <string.h> 13 13 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/IoModel.cpp ¶
r9291 r9320 5 5 6 6 #ifdef HAVE_CONFIG_H 7 #include "config.h"7 #include <config.h> 8 8 #else 9 9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" … … 11 11 12 12 #include <string.h> 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include "./objects.h" 15 15 #include "../shared/shared.h" -
TabularUnified issm/trunk/src/c/objects/KML/KMLFileReadUtils.cpp ¶
r9214 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_Attribute.cpp ¶
r8461 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_ColorStyle.cpp ¶
r8461 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_Container.cpp ¶
r9261 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_Document.cpp ¶
r8461 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_Feature.cpp ¶
r8461 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_File.cpp ¶
r9261 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_Folder.cpp ¶
r8461 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_Geometry.cpp ¶
r8461 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_GroundOverlay.cpp ¶
r8464 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_Icon.cpp ¶
r8464 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_LatLonBox.cpp ¶
r8464 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_LineString.cpp ¶
r9261 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_LineStyle.cpp ¶
r8461 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_LinearRing.cpp ¶
r9261 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_MultiGeometry.cpp ¶
r9261 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_Object.cpp ¶
r9261 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_Overlay.cpp ¶
r8468 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_Placemark.cpp ¶
r9261 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_PolyStyle.cpp ¶
r8461 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_Polygon.cpp ¶
r9261 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_Style.cpp ¶
r8461 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_StyleSelector.cpp ¶
r8461 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/KML/KML_SubStyle.cpp ¶
r8461 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Loads/Friction.cpp ¶
r8657 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Loads/Icefront.cpp ¶
r8800 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Loads/Numericalflux.cpp ¶
r9232 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../../EnumDefinitions/EnumDefinitions.h" -
TabularUnified issm/trunk/src/c/objects/Loads/Pengrid.cpp ¶
r9127 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Loads/Penpair.cpp ¶
r8800 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Loads/Riftfront.cpp ¶
r8800 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../../EnumDefinitions/EnumDefinitions.h" -
TabularUnified issm/trunk/src/c/objects/Materials/Matice.cpp ¶
r8967 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 10 11 #include "stdio.h"11 #include <stdio.h> 12 12 #include <string.h> 13 13 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Materials/Matpar.cpp ¶
r9291 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 10 11 #include "stdio.h"11 #include <stdio.h> 12 12 #include <string.h> 13 13 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Node.cpp ¶
r9302 r9320 5 5 /*Include files: {{{1*/ 6 6 #ifdef HAVE_CONFIG_H 7 #include "config.h"7 #include <config.h> 8 8 #else 9 9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 10 10 #endif 11 11 12 #include "stdio.h"12 #include <stdio.h> 13 13 #include <string.h> 14 14 #include "./objects.h" -
TabularUnified issm/trunk/src/c/objects/Numerics/ElementMatrix.cpp ¶
r8805 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Numerics/ElementVector.cpp ¶
r8800 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Options/Option.cpp ¶
r7737 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Options/OptionCell.cpp ¶
r8535 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Options/OptionChar.cpp ¶
r8564 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Options/OptionDouble.cpp ¶
r8535 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Options/OptionLogical.cpp ¶
r7746 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Options/OptionStruct.cpp ¶
r8564 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Options/OptionUtilities.cpp ¶
r7739 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Params/BoolParam.cpp ¶
r8224 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Params/BoolParam.h ¶
r8600 r9320 10 10 /*{{{1*/ 11 11 #ifdef HAVE_CONFIG_H 12 #include "config.h"12 #include <config.h> 13 13 #else 14 14 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/Params/DoubleMatArrayParam.cpp ¶
r8224 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Params/DoubleMatArrayParam.h ¶
r8600 r9320 10 10 /*{{{1*/ 11 11 #ifdef HAVE_CONFIG_H 12 #include "config.h"12 #include <config.h> 13 13 #else 14 14 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/Params/DoubleMatParam.cpp ¶
r8646 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Params/DoubleMatParam.h ¶
r8646 r9320 10 10 /*{{{1*/ 11 11 #ifdef HAVE_CONFIG_H 12 #include "config.h"12 #include <config.h> 13 13 #else 14 14 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/Params/DoubleParam.cpp ¶
r8600 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 10 11 #include "stdio.h"11 #include <stdio.h> 12 12 #include <string.h> 13 13 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Params/DoubleParam.h ¶
r8600 r9320 10 10 /*{{{1*/ 11 11 #ifdef HAVE_CONFIG_H 12 #include "config.h"12 #include <config.h> 13 13 #else 14 14 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/Params/DoubleVecParam.cpp ¶
r8646 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Params/DoubleVecParam.h ¶
r8600 r9320 10 10 /*{{{1*/ 11 11 #ifdef HAVE_CONFIG_H 12 #include "config.h"12 #include <config.h> 13 13 #else 14 14 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/Params/FileParam.cpp ¶
r8224 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Params/FileParam.h ¶
r8600 r9320 10 10 /*{{{1*/ 11 11 #ifdef HAVE_CONFIG_H 12 #include "config.h"12 #include <config.h> 13 13 #else 14 14 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/Params/IntMatParam.cpp ¶
r8600 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Params/IntMatParam.h ¶
r8600 r9320 10 10 /*{{{1*/ 11 11 #ifdef HAVE_CONFIG_H 12 #include "config.h"12 #include <config.h> 13 13 #else 14 14 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/Params/IntParam.cpp ¶
r8224 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Params/IntParam.h ¶
r8600 r9320 10 10 /*{{{1*/ 11 11 #ifdef HAVE_CONFIG_H 12 #include "config.h"12 #include <config.h> 13 13 #else 14 14 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/Params/IntVecParam.cpp ¶
r9111 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Params/IntVecParam.h ¶
r9110 r9320 10 10 /*{{{1*/ 11 11 #ifdef HAVE_CONFIG_H 12 #include "config.h"12 #include <config.h> 13 13 #else 14 14 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/Params/Param.h ¶
r8600 r9320 11 11 12 12 #ifdef HAVE_CONFIG_H 13 #include "config.h"13 #include <config.h> 14 14 #else 15 15 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/Params/PetscMatParam.cpp ¶
r8224 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Params/PetscMatParam.h ¶
r8600 r9320 10 10 /*{{{1*/ 11 11 #ifdef HAVE_CONFIG_H 12 #include "config.h"12 #include <config.h> 13 13 #else 14 14 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/Params/PetscVecParam.cpp ¶
r8224 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Params/PetscVecParam.h ¶
r8600 r9320 10 10 /*{{{1*/ 11 11 #ifdef HAVE_CONFIG_H 12 #include "config.h"12 #include <config.h> 13 13 #else 14 14 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/Params/StringArrayParam.cpp ¶
r8926 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Params/StringArrayParam.h ¶
r8600 r9320 10 10 /*{{{1*/ 11 11 #ifdef HAVE_CONFIG_H 12 #include "config.h"12 #include <config.h> 13 13 #else 14 14 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/Params/StringParam.cpp ¶
r8224 r9320 6 6 /*{{{1*/ 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include "../objects.h" -
TabularUnified issm/trunk/src/c/objects/Params/StringParam.h ¶
r8600 r9320 10 10 /*{{{1*/ 11 11 #ifdef HAVE_CONFIG_H 12 #include "config.h"12 #include <config.h> 13 13 #else 14 14 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/objects/Patch.cpp ¶
r6851 r9320 5 5 /*Include files: {{{1*/ 6 6 #ifdef HAVE_CONFIG_H 7 #include "config.h"7 #include <config.h> 8 8 #else 9 9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 10 10 #endif 11 11 12 #include "stdio.h"12 #include <stdio.h> 13 13 #include <string.h> 14 14 #include "./objects.h" -
TabularUnified issm/trunk/src/c/objects/Segment.cpp ¶
r8303 r9320 5 5 /*Include files: {{{1*/ 6 6 #ifdef HAVE_CONFIG_H 7 #include "config.h"7 #include <config.h> 8 8 #else 9 9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 10 10 #endif 11 11 12 #include "stdio.h"12 #include <stdio.h> 13 13 #include <string.h> 14 14 #include "./objects.h" -
TabularUnified issm/trunk/src/c/objects/Vertex.cpp ¶
r6231 r9320 5 5 /*Include files: {{{1*/ 6 6 #ifdef HAVE_CONFIG_H 7 #include "config.h"7 #include <config.h> 8 8 #else 9 9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/shared/Alloc/alloc.cpp ¶
r7309 r9320 14 14 15 15 #ifdef HAVE_CONFIG_H 16 #include "config.h"16 #include <config.h> 17 17 #else 18 18 #error "Cannot compile without HAVE_CONFIG_H symbol! run configure first!" … … 23 23 #endif 24 24 25 #include "stdio.h"26 #include "stdlib.h"25 #include <stdio.h> 26 #include <stdlib.h> 27 27 28 28 #include "./alloc.h" -
TabularUnified issm/trunk/src/c/shared/Dofs/dofsetgen.cpp ¶
r3775 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" … … 11 11 #include "../Alloc/alloc.h" 12 12 #include "../../include/include.h" 13 #include "stdio.h"13 #include <stdio.h> 14 14 15 15 double* dofsetgen(int numdofs,int* doflist,int dofspernode,int totaldofs){ -
TabularUnified issm/trunk/src/c/shared/Exceptions/Exceptions.cpp ¶
r4353 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/shared/Exceptions/exprintf.cpp ¶
r3570 r9320 7 7 8 8 9 #include "stdarg.h"10 #include "stdio.h"9 #include <stdarg.h> 10 #include <stdio.h> 11 11 #include "../Alloc/alloc.h" 12 12 -
TabularUnified issm/trunk/src/c/shared/Exp/DomainOutlineRead.cpp ¶
r8743 r9320 6 6 */ 7 7 8 #include "stdio.h"8 #include <stdio.h> 9 9 #include "../Alloc/alloc.h" 10 10 #include "../../include/include.h" … … 16 16 /*Error management: */ 17 17 int noerr=1; 18 int i, j,counter;18 int i,counter; 19 19 20 20 /*I/O: */ 21 21 FILE* fid=NULL; 22 22 char chardummy[256]; 23 int idummy;24 23 double ddummy; 25 24 … … 47 46 nprof=1; 48 47 for(;;){ 49 fscanf(fid,"% s %s\n",chardummy,chardummy);50 fscanf(fid,"% s %s\n",chardummy,chardummy);51 fscanf(fid,"% s %s %s %s\n",chardummy,chardummy,chardummy,chardummy);52 fscanf(fid,"% u %s\n",&n,chardummy);53 fscanf(fid,"% s %s %s %s %s\n",chardummy,chardummy,chardummy,chardummy,chardummy);48 fscanf(fid,"%256s %256s\n",chardummy,chardummy); 49 fscanf(fid,"%256s %256s\n",chardummy,chardummy); 50 fscanf(fid,"%256s %256s %256s %256s\n",chardummy,chardummy,chardummy,chardummy); 51 fscanf(fid,"%20u %256s\n",&n,chardummy); 52 fscanf(fid,"%256s %256s %256s %256s %256s\n",chardummy,chardummy,chardummy,chardummy,chardummy); 54 53 for (i=0;i<n;i++){ 55 fscanf(fid,"% lf %lf\n",&ddummy,&ddummy);54 fscanf(fid,"%20lf %20lf\n",&ddummy,&ddummy); 56 55 } 57 56 /*Ok, we have faked one profile reading, check whether we are at the end of the file, otherwise, keep fake reading next profile:*/ … … 79 78 80 79 /*Skip header: */ 81 fscanf(fid,"% s %s\n",chardummy,chardummy);82 fscanf(fid,"% s %s\n",chardummy,chardummy);83 fscanf(fid,"% s %s %s %s\n",chardummy,chardummy,chardummy,chardummy);80 fscanf(fid,"%256s %256s\n",chardummy,chardummy); 81 fscanf(fid,"%256s %256s\n",chardummy,chardummy); 82 fscanf(fid,"%256s %256s %256s %256s\n",chardummy,chardummy,chardummy,chardummy); 84 83 85 84 /*Get number of profile vertices: */ 86 fscanf(fid,"% u %s\n",&n,chardummy);85 fscanf(fid,"%20u %256s\n",&n,chardummy); 87 86 88 87 /*Skip next line: */ 89 fscanf(fid,"% s %s %s %s %s\n",chardummy,chardummy,chardummy,chardummy,chardummy);88 fscanf(fid,"%256s %256s %256s %256s %256s\n",chardummy,chardummy,chardummy,chardummy,chardummy); 90 89 91 90 /*Allocate vertices: */ … … 96 95 /*Read vertices: */ 97 96 for (i=0;i<n;i++){ 98 fscanf(fid,"% lf %lf\n",x+i,y+i);97 fscanf(fid,"%20lf %20lf\n",x+i,y+i); 99 98 } 100 99 -
TabularUnified issm/trunk/src/c/shared/Exp/DomainOutlineWrite.cpp ¶
r9258 r9320 6 6 */ 7 7 8 #include "stdio.h"8 #include <stdio.h> 9 9 #include "../Alloc/alloc.h" 10 10 #include "../../include/include.h" … … 16 16 /*Error management: */ 17 17 int noerr=1; 18 int i, j,counter;18 int i,counter; 19 19 20 20 /*I/O: */ 21 21 FILE* fid=NULL; 22 char chardummy[256];23 int idummy;24 double ddummy;25 22 26 23 /*input: */ -
TabularUnified issm/trunk/src/c/shared/Exp/IsInPoly.cpp ¶
r8301 r9320 9 9 10 10 #ifdef HAVE_CONFIG_H 11 #include "config.h"11 #include <config.h> 12 12 #else 13 13 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/shared/Matlab/PrintfFunction.cpp ¶
r8539 r9320 4 4 */ 5 5 6 #include "stdarg.h"7 #include "stdio.h"6 #include <stdarg.h> 7 #include <stdio.h> 8 8 #include "../../shared/shared.h" 9 9 #include "../../include/include.h" -
TabularUnified issm/trunk/src/c/shared/Numerics/BrentSearch.cpp ¶
r9305 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/shared/Numerics/IsInputConverged.cpp ¶
r8224 r9320 7 7 8 8 #ifdef HAVE_CONFIG_H 9 #include "config.h"9 #include <config.h> 10 10 #else 11 11 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/shared/Numerics/OptFunc.cpp ¶
r8601 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/shared/Numerics/OptimalSearch.cpp ¶
r9305 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/shared/Numerics/PetscOptionsFromAnalysis.cpp ¶
r8224 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/shared/Numerics/Synchronize.sh ¶
r6412 r9320 22 22 /*{{{*/ 23 23 #ifdef HAVE_CONFIG_H 24 #include "config.h"24 #include <config.h> 25 25 #else 26 26 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/shared/Numerics/UnitConversion.cpp ¶
r9316 r9320 5 5 /*headers {{{1*/ 6 6 #ifdef HAVE_CONFIG_H 7 #include "config.h"7 #include <config.h> 8 8 #else 9 9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/shared/Numerics/Verbosity.cpp ¶
r6412 r9320 11 11 /*{{{*/ 12 12 #ifdef HAVE_CONFIG_H 13 #include "config.h"13 #include <config.h> 14 14 #else 15 15 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/shared/Numerics/cross.cpp ¶
r99 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/shared/Numerics/extrema.cpp ¶
r8224 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/shared/Numerics/norm.cpp ¶
r1439 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/shared/Sorting/binary_search.cpp ¶
r3595 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 10 11 #include "stdio.h"11 #include <stdio.h> 12 12 13 13 int binary_search(int* poffset,int target, int* sorted_integers,int num_integers){ -
TabularUnified issm/trunk/src/c/shared/String/DescriptorIndex.cpp ¶
r6412 r9320 6 6 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include <string.h> 15 15 #include <ctype.h> -
TabularUnified issm/trunk/src/c/shared/Threads/LaunchThread.cpp ¶
r6412 r9320 10 10 11 11 #ifdef HAVE_CONFIG_H 12 #include "config.h"12 #include <config.h> 13 13 #else 14 14 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/shared/Threads/PartitionRange.cpp ¶
r3332 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/shared/TriMesh/TriMeshUtils.cpp ¶
r8301 r9320 381 381 int IsInPoly(double* in,double* xc,double* yc,int numnodes,double* x,double* y,int nods){ 382 382 383 int i ,j;383 int i; 384 384 double x0,y0; 385 385 … … 586 586 double* riftpairs=NULL; 587 587 int node1,node2,node3,node4,temp_node; 588 double el 1,el2;588 double el2; 589 589 int newnods; //temporary # node counter. 590 590 double xmin,ymin; … … 633 633 riftpairs=rifts1pairs[i]; 634 634 for (j=0;j<rifts1numsegs[i];j++){ 635 el1=*(riftpairs+2*j+0);636 635 el2=*(riftpairs+2*j+1); 637 636 node1=(int)*(riftsegments+3*j+0); … … 807 806 /*node and element manipulation: */ 808 807 int node1,node2,node3,node4,temp_node,tip1,tip2,node; 809 double el 1,el2;808 double el2; 810 809 int already_ordered=0; 811 810 … … 835 834 836 835 for (j=0;j<numsegs;j++){ 837 el1=*(riftpairs+2*j+0);838 836 el2=*(riftpairs+2*j+1); 839 837 node1=(int)*(riftsegments+3*j+0); … … 959 957 960 958 double el1,el2,node1,node2,node3,node4; 961 double t ip1,tip2,temp_node;959 double temp_node; 962 960 963 961 /*output: */ … … 983 981 riftsegments=riftssegments[i]; 984 982 riftpairs=riftspairs[i]; 985 tip1=*(riftstips+2*i+0);986 tip2=*(riftstips+2*i+1);987 983 988 984 /*allocate riftpenaltypairs, and riftnumpenaltypairs: */ -
TabularUnified issm/trunk/src/c/shared/TriMesh/trimesh.h ¶
r8301 r9320 7 7 8 8 9 #include "stdio.h"9 #include <stdio.h> 10 10 #include <math.h> 11 11 -
TabularUnified issm/trunk/src/c/solutions/AdjointCorePointerFromSolutionEnum.cpp ¶
r8288 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/solutions/CorePointerFromSolutionEnum.cpp ¶
r9218 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/solutions/SolutionConfiguration.cpp ¶
r9218 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/solutions/WriteLockFile.cpp ¶
r6412 r9320 2 2 * \brief 3 3 */ 4 #include "stdio.h"4 #include <stdio.h> 5 5 #include "../shared/shared.h" 6 6 #include "../include/include.h" -
TabularUnified issm/trunk/src/c/solutions/controlconvergence.cpp ¶
r6412 r9320 3 3 */ 4 4 #ifdef HAVE_CONFIG_H 5 #include "config.h"5 #include <config.h> 6 6 #else 7 7 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/solutions/objectivefunctionC.cpp ¶
r8926 r9320 5 5 /*include files: {{{1*/ 6 6 #ifdef HAVE_CONFIG_H 7 #include "config.h"7 #include <config.h> 8 8 #else 9 9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/solutions/steadystateconvergence.cpp ¶
r8073 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/toolkits/matlab/MatlabNArrayToNArray.cpp ¶
r8901 r9320 5 5 6 6 #ifdef HAVE_CONFIG_H 7 #include "config.h"7 #include <config.h> 8 8 #else 9 9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/toolkits/petsc/patches/GetOwnershipBoundariesFromRange.cpp ¶
r3332 r9320 6 6 7 7 #ifdef HAVE_CONFIG_H 8 #include "config.h"8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 11 11 #endif 12 12 13 #include "stdio.h"13 #include <stdio.h> 14 14 #include "../../../shared/shared.h" 15 15 -
TabularUnified issm/trunk/src/c/toolkits/petsc/patches/ISFree.cpp ¶
r1 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/toolkits/petsc/patches/KSPFree.cpp ¶
r1 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/toolkits/petsc/patches/MatFree.cpp ¶
r1 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/toolkits/petsc/patches/MatMultPatch.cpp ¶
r9307 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/toolkits/petsc/patches/MatPartition.cpp ¶
r6852 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/toolkits/petsc/patches/MatlabMatrixToDoubleMatrix.cpp ¶
r3595 r9320 5 5 6 6 #ifdef HAVE_CONFIG_H 7 #include "config.h"7 #include <config.h> 8 8 #else 9 9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/toolkits/petsc/patches/MatlabMatrixToPetscMatrix.cpp ¶
r7188 r9320 5 5 6 6 #ifdef HAVE_CONFIG_H 7 #include "config.h"7 #include <config.h> 8 8 #else 9 9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/toolkits/petsc/patches/MatlabVectorToDoubleVector.cpp ¶
r6412 r9320 5 5 6 6 #ifdef HAVE_CONFIG_H 7 #include "config.h"7 #include <config.h> 8 8 #else 9 9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/toolkits/petsc/patches/MatlabVectorToPetscVector.cpp ¶
r1 r9320 5 5 6 6 #ifdef HAVE_CONFIG_H 7 #include "config.h"7 #include <config.h> 8 8 #else 9 9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/toolkits/petsc/patches/NewMat.cpp ¶
r6862 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/toolkits/petsc/patches/NewVec.cpp ¶
r5890 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/toolkits/petsc/patches/PetscDetermineLocalSize.cpp ¶
r5707 r9320 3 3 */ 4 4 5 #include "stdio.h"5 #include <stdio.h> 6 6 #include <math.h> 7 7 -
TabularUnified issm/trunk/src/c/toolkits/petsc/patches/PetscMatrixToMatlabMatrix.cpp ¶
r4526 r9320 5 5 6 6 #ifdef HAVE_CONFIG_H 7 #include "config.h"7 #include <config.h> 8 8 #else 9 9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/toolkits/petsc/patches/PetscOptionsDetermineSolverType.cpp ¶
r7391 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/toolkits/petsc/patches/PetscOptionsInsertMultipleString.cpp ¶
r6412 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/toolkits/petsc/patches/PetscVectorToMatlabVector.cpp ¶
r304 r9320 5 5 6 6 #ifdef HAVE_CONFIG_H 7 #include "config.h"7 #include <config.h> 8 8 #else 9 9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/toolkits/petsc/patches/SerialToVec.cpp ¶
r1061 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/toolkits/petsc/patches/VecDuplicatePatch.cpp ¶
r434 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/toolkits/petsc/patches/VecFree.cpp ¶
r1 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/toolkits/petsc/patches/VecMerge.cpp ¶
r6412 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/toolkits/petsc/patches/VecPartition.cpp ¶
r5787 r9320 4 4 5 5 #ifdef HAVE_CONFIG_H 6 #include "config.h"6 #include <config.h> 7 7 #else 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" -
TabularUnified issm/trunk/src/c/toolkits/petsc/petscincludes.h ¶
r6014 r9320 7 7 8 8 /*Petsc includes: */ 9 #include "petscmat.h"10 #include "petscvec.h"11 #include "petscksp.h"12 #include "petscsys.h"9 #include <petscmat.h> 10 #include <petscvec.h> 11 #include <petscksp.h> 12 #include <petscsys.h> 13 13 14 14 /*our own patches: */ -
TabularUnified issm/trunk/src/c/toolkits/plapack/plapackincludes.h ¶
r3775 r9320 7 7 8 8 #include "PLA.h" 9 #include "PLA_protoinclude.h"10 9 11 10 /* missing Plapack prototypes: */ -
TabularUnified issm/trunk/src/m/classes/model.m ¶
r9291 r9320 268 268 basal_melting_rate_correction_apply = {0,true,'Integer'}; 269 269 pressure = {NaN,true,'DoubleMat',1}; 270 %Hydrology 270 271 watercolumn = {NaN,true,'DoubleMat',1}; 271 272 -
TabularUnified issm/trunk/src/m/model/radarpower.m ¶
r9226 r9320 11 11 12 12 %If gdal does not work, uncomment the following line 13 setenv('LD_LIBRARY_PATH',' ');13 setenv('LD_LIBRARY_PATH','/proj/ice/larour/issm/trunk/externalpackages/gdal/install/lib/'); 14 14 15 15 %Parse inputs
Note:
See TracChangeset
for help on using the changeset viewer.