Changeset 14515
- Timestamp:
- 04/04/13 22:01:23 (12 years ago)
- Location:
- issm/trunk-jpl/src/mobile
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/mobile/android/ISSM_APP/res/layout/settingsmenu.xml
r14504 r14515 67 67 android:layout_height="wrap_content" 68 68 android:layout_below="@+id/sealvlBar" 69 android:text=" Parameters" />69 android:text="Done" /> 70 70 </RelativeLayout> -
issm/trunk-jpl/src/mobile/android/ISSM_APP/src/gov/nasa/jpl/issm/ISSM.java
r14506 r14515 251 251 super.onPostExecute(null); 252 252 dialog.setCancelable(true); 253 dialog.setMessage(" Loading View. Please Wait ...");253 dialog.setMessage("Running ISSM simulation. Please Wait ..."); 254 254 dialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL); 255 255 dialog.setProgress(0); -
issm/trunk-jpl/src/mobile/native/Main.cpp
r14398 r14515 67 67 } 68 68 /*}}}*/ 69 void Solve(JNIEnv *env, jclass clazz , jdouble alpha, j object buf){ /*{{{*/69 void Solve(JNIEnv *env, jclass clazz , jdouble alpha, jdouble temperature, jobject buf){ /*{{{*/ 70 70 71 71 int i,count; … … 84 84 /*reset basal friction to what it was before: */ 85 85 __android_log_print(ANDROID_LOG_INFO, "Native","alpha %g ",alpha); 86 /*reset basal temperature to what it was before: */ 87 __android_log_print(ANDROID_LOG_INFO, "Native","temperature %g ",temperature); 88 86 89 InputDuplicatex(fm->elements,fm->nodes,fm->vertices,fm->loads,fm->materials,fm->parameters,AndroidFrictionCoefficientEnum,FrictionCoefficientEnum); 87 90 … … 161 164 { 162 165 {"createISSMModel" ,"(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)I" , (void *) Initialize}, 163 {"solveISSMModel", "(D Ljava/nio/DoubleBuffer;)V", (void *) Solve}166 {"solveISSMModel", "(DDLjava/nio/DoubleBuffer;)V", (void *) Solve} 164 167 }; 165 168 /*}}}*/
Note:
See TracChangeset
for help on using the changeset viewer.