Skip to content
Snippets Groups Projects
Commit 12d05dcf authored by 数学の武士's avatar 数学の武士
Browse files

naming fixes

parent 906e6803
Branches
Tags
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
extern "C" { extern "C" {
#endif #endif
void cxx_esm_compute_flux(struct sfxDataVecTypeC* sfx, void esm_compute_flux(struct sfxDataVecTypeC* sfx,
struct meteoDataVecTypeC* meteo, struct meteoDataVecTypeC* meteo,
const struct sfx_esm_param_C* model_param, const struct sfx_esm_param_C* model_param,
const struct sfx_surface_param* surface_param, const struct sfx_surface_param* surface_param,
...@@ -13,7 +13,7 @@ extern "C" { ...@@ -13,7 +13,7 @@ extern "C" {
const struct sfx_phys_constants* constants, const struct sfx_phys_constants* constants,
const int grid_size); const int grid_size);
void cxx_sheba_compute_flux(struct sfxDataVecTypeC* sfx, void sheba_compute_flux(struct sfxDataVecTypeC* sfx,
struct meteoDataVecTypeC* meteo, struct meteoDataVecTypeC* meteo,
const struct sfx_sheba_param_C* model_param, const struct sfx_sheba_param_C* model_param,
const struct sfx_surface_param* surface_param, const struct sfx_surface_param* surface_param,
......
...@@ -12,7 +12,7 @@ void c_esm_compute_flux (struct sfxDataVecTypeC* sfx, ...@@ -12,7 +12,7 @@ void c_esm_compute_flux (struct sfxDataVecTypeC* sfx,
const struct sfx_phys_constants* constants, const struct sfx_phys_constants* constants,
const int *grid_size) const int *grid_size)
{ {
cxx_esm_compute_flux(sfx, meteo, model_param, surface_param, numerics, constants, *grid_size); esm_compute_flux(sfx, meteo, model_param, surface_param, numerics, constants, *grid_size);
} }
void c_sheba_compute_flux (struct sfxDataVecTypeC* sfx, void c_sheba_compute_flux (struct sfxDataVecTypeC* sfx,
...@@ -23,5 +23,5 @@ void c_sheba_compute_flux (struct sfxDataVecTypeC* sfx, ...@@ -23,5 +23,5 @@ void c_sheba_compute_flux (struct sfxDataVecTypeC* sfx,
const struct sfx_phys_constants* constants, const struct sfx_phys_constants* constants,
const int *grid_size) const int *grid_size)
{ {
cxx_sheba_compute_flux(sfx, meteo, model_param, surface_param, numerics, constants, *grid_size); sheba_compute_flux(sfx, meteo, model_param, surface_param, numerics, constants, *grid_size);
} }
\ No newline at end of file
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <vector> #include <vector>
// -------------------------------------------------------------------------- // // -------------------------------------------------------------------------- //
void cxx_esm_compute_flux (sfxDataVecTypeC* sfx, void esm_compute_flux (sfxDataVecTypeC* sfx,
meteoDataVecTypeC* meteo, meteoDataVecTypeC* meteo,
const sfx_esm_param_C* model_param, const sfx_esm_param_C* model_param,
const sfx_surface_param* surface_param, const sfx_surface_param* surface_param,
...@@ -23,7 +23,7 @@ void cxx_esm_compute_flux (sfxDataVecTypeC* sfx, ...@@ -23,7 +23,7 @@ void cxx_esm_compute_flux (sfxDataVecTypeC* sfx,
#endif #endif
} }
void cxx_sheba_compute_flux (sfxDataVecTypeC* sfx, void sheba_compute_flux (sfxDataVecTypeC* sfx,
meteoDataVecTypeC* meteo, meteoDataVecTypeC* meteo,
const sfx_sheba_param_C* model_param, const sfx_sheba_param_C* model_param,
const sfx_surface_param* surface_param, const sfx_surface_param* surface_param,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment