Changeset 12466 for issm/trunk-jpl/src/c/Container/Inputs.cpp
- Timestamp:
- 06/19/12 15:22:27 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/Container/Inputs.cpp
r12365 r12466 93 93 } 94 94 /*}}}*/ 95 /*FUNCTION Inputs::GetInputValue( double* pvalue,int enum-type){{{*/96 void Inputs::GetInputValue( double* pvalue,int enum_type){95 /*FUNCTION Inputs::GetInputValue(IssmDouble* pvalue,int enum-type){{{*/ 96 void Inputs::GetInputValue(IssmDouble* pvalue,int enum_type){ 97 97 98 98 vector<Object*>::iterator object; … … 122 122 /*}}}*/ 123 123 /*FUNCTION Inputs::GetInputAverage{{{*/ 124 void Inputs::GetInputAverage( double* pvalue,int enum_type){124 void Inputs::GetInputAverage(IssmDouble* pvalue,int enum_type){ 125 125 126 126 vector<Object*>::iterator object; … … 206 206 /*}}}*/ 207 207 /*FUNCTION Inputs::ConstrainMin{{{*/ 208 void Inputs::ConstrainMin(int constrain_enum, double minimum){208 void Inputs::ConstrainMin(int constrain_enum, IssmDouble minimum){ 209 209 210 210 Input* constrain_input=NULL; … … 220 220 /*}}}*/ 221 221 /*FUNCTION Inputs::InfinityNorm{{{*/ 222 double Inputs::InfinityNorm(int enumtype){223 224 /*Output*/ 225 double norm;222 IssmDouble Inputs::InfinityNorm(int enumtype){ 223 224 /*Output*/ 225 IssmDouble norm; 226 226 227 227 /*Get input*/ … … 241 241 /*}}}*/ 242 242 /*FUNCTION Inputs::Max{{{*/ 243 double Inputs::Max(int enumtype){244 245 /*Output*/ 246 double max;243 IssmDouble Inputs::Max(int enumtype){ 244 245 /*Output*/ 246 IssmDouble max; 247 247 248 248 /*Get input*/ … … 262 262 /*}}}*/ 263 263 /*FUNCTION Inputs::MaxAbs{{{*/ 264 double Inputs::MaxAbs(int enumtype){265 266 /*Output*/ 267 double max;264 IssmDouble Inputs::MaxAbs(int enumtype){ 265 266 /*Output*/ 267 IssmDouble max; 268 268 269 269 /*Get input*/ … … 283 283 /*}}}*/ 284 284 /*FUNCTION Inputs::Min{{{*/ 285 double Inputs::Min(int enumtype){286 287 /*Output*/ 288 double min;285 IssmDouble Inputs::Min(int enumtype){ 286 287 /*Output*/ 288 IssmDouble min; 289 289 290 290 /*Get input*/ … … 304 304 /*}}}*/ 305 305 /*FUNCTION Inputs::MinAbs{{{*/ 306 double Inputs::MinAbs(int enumtype){307 308 /*Output*/ 309 double min;306 IssmDouble Inputs::MinAbs(int enumtype){ 307 308 /*Output*/ 309 IssmDouble min; 310 310 311 311 /*Get input*/ … … 406 406 /*}}}*/ 407 407 /*FUNCTION Inputs::AXPY{{{*/ 408 void Inputs::AXPY(int MeshYEnum, double scalar, int MeshXEnum){408 void Inputs::AXPY(int MeshYEnum, IssmDouble scalar, int MeshXEnum){ 409 409 410 410 Input* xinput=NULL;
Note:
See TracChangeset
for help on using the changeset viewer.