Changeset 4082


Ignore:
Timestamp:
06/21/10 11:53:17 (15 years ago)
Author:
Eric.Larour
Message:

renamed UpdateInputsFromDakotax to InputUpdateFromDakotax

Location:
issm/trunk/src/c
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/Makefile.am

    r4079 r4082  
    428428                                        ./modules/InputUpdateFromConstantx/InputUpdateFromConstantx.h\
    429429                                        ./modules/InputUpdateFromConstantx/InputUpdateFromConstantx.cpp\
     430                                        ./modules/InputUpdateFromDakotax/InputUpdateFromDakotax.h\
     431                                        ./modules/InputUpdateFromDakotax/InputUpdateFromDakotax.cpp\
    430432                                        ./modules/UpdateInputsFromSolutionx/UpdateInputsFromSolutionx.h\
    431433                                        ./modules/UpdateInputsFromSolutionx/UpdateInputsFromSolutionx.cpp\
     
    949951                                        ./modules/InputUpdateFromConstantx/InputUpdateFromConstantx.h\
    950952                                        ./modules/InputUpdateFromConstantx/InputUpdateFromConstantx.cpp\
     953                                        ./modules/InputUpdateFromDakotax/InputUpdateFromDakotax.h\
     954                                        ./modules/InputUpdateFromDakotax/InputUpdateFromDakotax.cpp\
    951955                                        ./modules/UpdateInputsFromSolutionx/UpdateInputsFromSolutionx.h\
    952956                                        ./modules/UpdateInputsFromSolutionx/UpdateInputsFromSolutionx.cpp\
  • issm/trunk/src/c/modules/InputUpdateFromDakotax/InputUpdateFromDakotax.cpp

    r4081 r4082  
    1 /*!\file UpdateInputsFromDakotax
     1/*!\file InputUpdateFromDakotax
    22 * \brief: update datasets using  parameter inputs
    33 */
    44
    5 #include "./UpdateInputsFromDakotax.h"
     5#include "./InputUpdateFromDakotax.h"
    66#include "../../shared/shared.h"
    77#include "../../include/include.h"
     
    99#include "../../EnumDefinitions/EnumDefinitions.h"
    1010
    11 void UpdateInputsFromDakotax(double* variables,char** variables_descriptors,int numvariables,FemModel* femmodel,double* qmu_part,int qmu_npart){
     11void InputUpdateFromDakotax(double* variables,char** variables_descriptors,int numvariables,FemModel* femmodel,double* qmu_part,int qmu_npart){
    1212
    1313        ISSMERROR(" not supported yet!");
  • issm/trunk/src/c/modules/InputUpdateFromDakotax/InputUpdateFromDakotax.h

    r4081 r4082  
    1 /*!\file:  UpdateInputsFromDakotax.h
     1/*!\file:  InputUpdateFromDakotax.h
    22 * \brief header file for updating datasets from inputs
    33 */
    44
    5 #ifndef _UPDATEINPUTSFROMDAKOTAXX_H
    6 #define _UPDATEINPUTSFROMDAKOTAXX_H
     5#ifndef _INPUTUPDATEFROMDAKOTAXX_H
     6#define _INPUTUPDATEFROMDAKOTAXX_H
    77
    88#include "../../objects/objects.h"
     
    1010
    1111
    12 void UpdateInputsFromDakotax(double* variables,char** variables_descriptors,int numvariables,FemModel* femmodel,double* qmu_part,int qmu_npart);
     12void InputUpdateFromDakotax(double* variables,char** variables_descriptors,int numvariables,FemModel* femmodel,double* qmu_part,int qmu_npart);
    1313
    14 #endif  /* _UPDATEINPUTSFROMDAKOTAXX_H */
     14#endif  /* _INPUTUPDATEFROMDAKOTAXX_H */
    1515
  • issm/trunk/src/c/modules/Qmux/SpawnCoreParallel.cpp

    r4057 r4082  
    8989
    9090        /*Modify core inputs in objects contained in femmodel, to reflect the dakota variables inputs: */
    91         UpdateInputsFromDakotax(variables,variables_descriptors,numvariables,femmodel,qmu_part,qmu_npart);
     91        InputUpdateFromDakotax(variables,variables_descriptors,numvariables,femmodel,qmu_part,qmu_npart);
    9292
    9393        /*Run the analysis core solution sequence: */
  • issm/trunk/src/c/modules/modules.h

    r4079 r4082  
    3030#include "./InputUpdateFromConstantx/InputUpdateFromConstantx.h"
    3131#include "./UpdateInputsFromSolutionx/UpdateInputsFromSolutionx.h"
    32 #include "./UpdateInputsFromDakotax/UpdateInputsFromDakotax.h"
     32#include "./InputUpdateFromDakotax/InputUpdateFromDakotax.h"
    3333#include "./UpdateInputsFromVectorx/UpdateInputsFromVectorx.h"
    3434#include "./UpdateGeometryx/UpdateGeometryx.h"
Note: See TracChangeset for help on using the changeset viewer.