Changeset 70e11d for molecuilder/src
- Timestamp:
- Jan 10, 2010, 7:09:56 PM (16 years ago)
- Children:
- 00b5802
- Parents:
- 2c69a9
- Location:
- molecuilder/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/gslmatrix.hpp
r2c69a9 r70e11d 12 12 13 13 /*********************************************** includes ***********************************/ 14 15 // include config.h 16 #ifdef HAVE_CONFIG_H 17 #include <config.h> 18 #endif 14 19 15 20 #include <gsl/gsl_matrix.h> … … 51 56 bool IsNonNegative(); 52 57 bool IsPositiveDefinite(); 58 double Determinant(); 53 59 54 60 GSLMatrix& operator=(const GSLMatrix& rhs); -
molecuilder/src/gslvector.hpp
r2c69a9 r70e11d 12 12 13 13 /*********************************************** includes ***********************************/ 14 15 // include config.h 16 #ifdef HAVE_CONFIG_H 17 #include <config.h> 18 #endif 14 19 15 20 #include <gsl/gsl_vector.h> … … 32 37 void SetFromDoubleArray(double *x); 33 38 double Get(size_t m); 34 doubleSet(size_t m, double x);39 void Set(size_t m, double x); 35 40 double *Pointer(size_t m); 36 41 const double *const_Pointer(size_t m); -
molecuilder/src/linearsystemofequations.hpp
r2c69a9 r70e11d 9 9 10 10 /*********************************************** includes ***********************************/ 11 12 // include config.h 13 #ifdef HAVE_CONFIG_H 14 #include <config.h> 15 #endif 11 16 12 17 #include <gsl/gsl_linalg.h>
Note:
See TracChangeset
for help on using the changeset viewer.