Changeset 15933
- Timestamp:
- 08/25/13 16:25:59 (12 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/configs/config-arm-linux.sh
r14485 r15933 3 3 ./configure \ 4 4 --prefix=$ISSM_DIR\ 5 --libdir=$ISSM_DIR/ src/mobile/android/ISSM_APP/libs/armeabi\5 --libdir=$ISSM_DIR/../mobile/android/ISSM_APP/libs/armeabi\ 6 6 --build="i386-apple-darwin10.8.0"\ 7 7 --host="arm-linux-androideabi"\ -
issm/trunk-jpl/src/mobile/native/Main.cpp
r14712 r15933 1 #include "../../c/ issm.h"1 #include "../../c/main/issm.h" 2 2 #include <cstddef> 3 3 #include <stdio.h> … … 22 22 int argc; //arguments to constructor. 23 23 char** argv = NULL; 24 COMM communicator = 1; //fake communicator for constructor25 24 const char* issmname = "issm.exe"; 26 25 char *solution_type = NULL; 27 26 char *absfile = NULL; 28 27 char *relfile = NULL; 28 ISSM_MPI_Comm comm=0; 29 29 30 30 /*log:*/ … … 45 45 46 46 /*call Model constructor passing in infile as File Descriptor parameter.*/ 47 fm = new FemModel(argc,argv,comm unicator);47 fm = new FemModel(argc,argv,comm); 48 48 49 49 /*we'll need the toolkits activated right away to use matrices: */ … … 100 100 /*retrieve results: */ 101 101 __android_log_print(ANDROID_LOG_INFO, "Native","Retrieving results "); 102 fm->elements->ProcessResultsUnits();102 //fm->elements->ProcessResultsUnits(); we are now in SI units 103 103 patch=fm->elements->ResultsToPatch(); 104 104
Note:
See TracChangeset
for help on using the changeset viewer.