~ubuntu-branches/ubuntu/trusty/r-cran-rcpparmadillo/trusty-proposed

« back to all changes in this revision

Viewing changes to inst/include/armadillo_bits/glue_times_bones.hpp

  • Committer: Package Import Robot
  • Author(s): Dirk Eddelbuettel
  • Date: 2014-01-05 07:49:39 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20140105074939-dwxho57ujap094yj
Tags: 0.4.000-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
 
48
48
 
49
49
 
 
50
template<bool is_eT_blas_type>
 
51
struct glue_times_redirect3_helper
 
52
  {
 
53
  template<typename T1, typename T2, typename T3>
 
54
  arma_hot inline static void apply(Mat<typename T1::elem_type>& out, const Glue< Glue<T1,T2,glue_times>,T3,glue_times>& X);
 
55
  };
 
56
 
 
57
 
 
58
template<>
 
59
struct glue_times_redirect3_helper<true>
 
60
  {
 
61
  template<typename T1, typename T2, typename T3>
 
62
  arma_hot inline static void apply(Mat<typename T1::elem_type>& out, const Glue< Glue<T1,T2,glue_times>,T3,glue_times>& X);
 
63
  };
 
64
 
 
65
 
 
66
 
50
67
template<uword N>
51
68
struct glue_times_redirect
52
69
  {