Changeset 390a2b for molecuilder/src/vector.cpp
- Timestamp:
- Sep 21, 2009, 11:48:42 AM (16 years ago)
- Children:
- 14db08, 39d983
- Parents:
- bc3953
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/vector.cpp
rbc3953 r390a2b 8 8 #include "defs.hpp" 9 9 #include "helpers.hpp" 10 #include "memoryallocator.hpp" 10 11 #include "leastsquaremin.hpp" 11 12 #include "vector.hpp" … … 674 675 double * Vector::InverseMatrix(double *A) 675 676 { 676 double *B = (double *) Malloc(sizeof(double)*NDIM*NDIM, "Vector::InverseMatrix: *B");677 double *B = Malloc<double>(NDIM * NDIM, "Vector::InverseMatrix: *B"); 677 678 double detA = RDET3(A); 678 679 double detAReci;
Note:
See TracChangeset
for help on using the changeset viewer.