Changeset 13328
- Timestamp:
- 09/11/12 14:15:46 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/modules/AutodiffDriversx/AutodiffDriversx.cpp
r13326 r13328 3 3 */ 4 4 5 #include <iostream> 5 6 #include "../../modules/modules.h" 6 7 #include "../../shared/shared.h" … … 65 66 double *theJacVecProduct=xNew<double>(num_dependents); 66 67 double *theOutput=xNew<double>(num_dependents); 68 for (int i=0; i<num_independents; ++i) { 69 std::cout << "fos_forward xp[" << i << "]=" << xp[i] << std::endl; 70 } 67 71 if (fos_forward(1,num_dependents,num_independents, 0, xp, tangentDir, theOutput, theJacVecProduct )) 68 72 _error_("fos_forward returned non-zero error code");
Note:
See TracChangeset
for help on using the changeset viewer.