Lines Matching refs:Interface
26 template<class Interface>
37 typename Interface::stl_matrix tmp; in Action_ger()
44 Interface::matrix_from_stl(A_ref,A_stl); in Action_ger()
45 Interface::matrix_from_stl(A,A_stl); in Action_ger()
46 Interface::vector_from_stl(B_ref,B_stl); in Action_ger()
47 Interface::vector_from_stl(B,B_stl); in Action_ger()
48 Interface::vector_from_stl(X_ref,X_stl); in Action_ger()
49 Interface::vector_from_stl(X,X_stl); in Action_ger()
62 Interface::free_matrix(A,_size); in ~Action_ger()
63 Interface::free_vector(B); in ~Action_ger()
64 Interface::free_vector(X); in ~Action_ger()
65 Interface::free_matrix(A_ref,_size); in ~Action_ger()
66 Interface::free_vector(B_ref); in ~Action_ger()
67 Interface::free_vector(X_ref); in ~Action_ger()
74 return "ger_" + Interface::name(); in name()
82 Interface::copy_matrix(A_ref,A,_size); in initialize()
83 Interface::copy_vector(B_ref,B,_size); in initialize()
84 Interface::copy_vector(X_ref,X,_size); in initialize()
89 Interface::ger(A,B,X,_size); in calculate()
95 Interface::vector_to_stl(X,resu_stl); in check_result()
97 STL_interface<typename Interface::real_type>::ger(A_stl,B_stl,X_stl,_size); in check_result()
99 typename Interface::real_type error= in check_result()
100 STL_interface<typename Interface::real_type>::norm_diff(X_stl,resu_stl); in check_result()
111 typename Interface::stl_matrix A_stl;
112 typename Interface::stl_vector B_stl;
113 typename Interface::stl_vector X_stl;
114 typename Interface::stl_vector resu_stl;
116 typename Interface::gene_matrix A_ref;
117 typename Interface::gene_vector B_ref;
118 typename Interface::gene_vector X_ref;
120 typename Interface::gene_matrix A;
121 typename Interface::gene_vector B;
122 typename Interface::gene_vector X;