~ubuntu-branches/ubuntu/saucy/rheolef/saucy

« back to all changes in this revision

Viewing changes to skit/plib2/csr_vec_expr.h

  • Committer: Bazaar Package Importer
  • Author(s): Pierre Saramito
  • Date: 2011-03-23 11:14:26 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20110323111426-cjvhey7lxt6077ty
Tags: 5.93-1
* New upstream release (minor changes):
  - some extra warning message deleted in heap_allocator
  - graphic output with mayavi2 fixed
  - add doc refman in .info and .pdf format

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include "rheolef/csr.h"
25
25
namespace rheolef {
26
26
 
27
 
#ifdef TO_CLEAN
28
 
template <class T, class M>
29
 
inline
30
 
vec<T,M>
31
 
csr<T,M>::operator* (const vec<T,M>& x)
32
 
{
33
 
  vec<T,M> y (row_ownership(), T());
34
 
  mult (x, y);
35
 
  return y;
36
 
}
37
 
#endif // TO_CLEAN
 
27
  // moved into csr.h
38
28
 
39
29
} // namespace rheolef
40
30
# endif // _RHEOLEF_CSR_VEC_EXPR_H