Changeset 304 for trunk/lib/gslapi
- Timestamp:
- May 2, 2005, 4:10:50 PM (17 years ago)
- Location:
- trunk/lib/gslapi
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/gslapi/matrix.h
r295 r304 156 156 157 157 /// 158 /// Jari, To beimplemented. Should return a reference to a vector158 /// @todo to be properly implemented. Should return a reference to a vector 159 159 /// object. Underlying GSL supports only GSL_vector views, thus 160 160 /// some redesign of the vector class is needed. … … 166 166 167 167 /// 168 /// Jari,to be properly implemented. Should return a reference to168 /// @todo to be properly implemented. Should return a reference to 169 169 /// a vector object (matrix row). Underlying GSL supports only GSL_vector 170 170 /// views, thus some redesign of the vector class is needed. -
trunk/lib/gslapi/utility.h
r295 r304 10 10 11 11 namespace theplu { 12 // Jari, this should probably go somewhere else for doxygen to process.13 ///14 /// All GSL wrapper functionality is to be defined within gslapi15 /// namespace.16 ///17 /// There are a number of support operators and functions for the18 /// wrapper classes that do not belong to the classes themselves, but19 /// still are defined in this namespace.20 ///21 12 namespace gslapi { 22 13 -
trunk/lib/gslapi/vector.h
r303 r304 11 11 12 12 namespace theplu { 13 // Jari, this should probably go somewhere else for doxygen to process.14 ///15 /// All GSL wrapper functionality is to be defined within gslapi16 /// namespace.17 ///18 /// There are a number of support operators and functions for the19 /// wrapper classes that do not belong to the classes themselves, but20 /// still are defined in this namespace.21 ///22 13 namespace gslapi { 23 14 /// … … 103 94 /// @return GSL_SUCCESS on normal exit. 104 95 /// 105 // Jari, doxygen group as Vectoroperators96 // Jari, group as vector_operators 106 97 inline int add(const vector& other) { return gsl_vector_add(v_,other.v_); } 107 98 … … 112 103 /// @return GSL_SUCCESS on normal exit. 113 104 /// 114 // Jari, doxygen group as Vectoroperators105 // Jari, group as vector_operators 115 106 inline int 116 107 add_constant(double term) { return gsl_vector_add_constant(v_,term); }
Note: See TracChangeset
for help on using the changeset viewer.