Changeset 5713
- Timestamp:
- 09/09/10 08:34:53 (15 years ago)
- Location:
- issm/trunk/src/c
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Loads/Icefront.cpp
r5701 r5713 47 47 int icefront_eid; 48 48 int icefront_mparid; 49 int icefront_node_ids[ MAX_ICEFRONT_GRIDS];49 int icefront_node_ids[NUMVERTICESQUA]; //initialize with largest size 50 50 int icefront_fill; 51 51 -
issm/trunk/src/c/objects/Loads/Icefront.h
r5661 r5713 14 14 class IoModel; 15 15 /*}}}*/ 16 17 #define MAX_ICEFRONT_GRIDS 4 //max number of grids for a certain load18 #define ICEFRONTSTRING 20 //max string length19 16 20 17 class Icefront: public Load { -
issm/trunk/src/c/solutions/controlconvergence.cpp
r5281 r5713 2 2 * \brief: determine convergence of control_core solution 3 3 */ 4 5 4 #ifdef HAVE_CONFIG_H 6 5 #include "config.h" … … 16 15 #include "../modules/modules.h" 17 16 #include "./solutions.h" 18 19 17 20 18 bool controlconvergence(double* J,double* responses, double eps_cm, int n){ … … 47 45 return converged; 48 46 } 49
Note:
See TracChangeset
for help on using the changeset viewer.