Changeset 142
- Timestamp:
- 12/05/05 17:38:10 (5 years ago)
- Location:
- exactrbn/trunk
- Files:
-
- 1 added
- 1 removed
- 2 modified
-
Makefile (deleted)
-
Makefile.unix (added)
-
src/lapack_leqn.h (modified) (2 diffs)
-
src/rbn_solve.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
exactrbn/trunk/src/lapack_leqn.h
r135 r142 59 59 static inline int lapack_solve(double *const rhs, const double *const A, int dim) 60 60 __attribute__((regparm(3), 61 nonnull, 62 nothrow, 63 unused/*, 61 nonnull(1, 2), ///< Pointer arguments should not be null 62 nothrow, ///< This is Fortran -- we never throw an exception 63 unused ///< This is inlined -- we don't care if we are not used 64 /*, 64 65 warn_unused_result*/)); 65 66 … … 67 68 static inline int lapack_solve(float *const rhs, const float *const A, int dim) 68 69 __attribute__((regparm(3), 69 nonnull, 70 nothrow, 71 unused/*, 70 nonnull(1, 2), ///< Pointer arguments should not be null 71 nothrow, ///< This is Fortran -- we never throw an exception 72 unused ///< This is inlined -- we don't care if we are not used 73 /*, 72 74 warn_unused_result*/)); 73 75 -
exactrbn/trunk/src/rbn_solve.h
r129 r142 33 33 template <class T, int DIM> 34 34 struct MyVec { 35 T v[DIM]; 35 T v[DIM]; ///< The components 36 /** Indexation */ 36 37 T& operator[](size_t i) {return v[i];} 38 /** Const indexation */ 37 39 const T& operator[](size_t i) const {return v[i];} 38 40 };
