- Timestamp:
- 08/31/12 17:23:24 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/modules/Reduceloadx/Reduceloadx.cpp
r12515 r13216 12 12 #include "../../io/io.h" 13 13 14 void Reduceloadx( Vector * pf, Matrix* Kfs, Vector* y_s,bool flag_ys0){14 void Reduceloadx( Vector<IssmDouble>* pf, Matrix<IssmDouble>* Kfs, Vector<IssmDouble>* y_s,bool flag_ys0){ 15 15 16 16 /*intermediary*/ 17 Vector * y_s0 = NULL;18 Vector * Kfsy_s = NULL;17 Vector<IssmDouble>* y_s0 = NULL; 18 Vector<IssmDouble>* Kfsy_s = NULL; 19 19 int Kfsm,Kfsn; 20 20 int global_m,global_n; … … 32 32 /*pf = pf - Kfs * y_s;*/ 33 33 Kfs->GetLocalSize(&Kfsm,&Kfsn); 34 Kfsy_s=new Vector (Kfsm,fromlocalsize);34 Kfsy_s=new Vector<IssmDouble>(Kfsm,fromlocalsize); 35 35 if (flag_ys0){ 36 36
Note:
See TracChangeset
for help on using the changeset viewer.