1 /* --------------------------------------------------------------------------
2 CppAD: C++ Algorithmic Differentiation: Copyright (C) 2003-20 Bradley M. Bell
3 
4 CppAD is distributed under the terms of the
5              Eclipse Public License Version 2.0.
6 
7 This Source Code may also be made available under the following
8 Secondary License when the conditions for such availability set forth
9 in the Eclipse Public License, Version 2.0 are satisfied:
10       GNU General Public License, Version 2.0 or later.
11 ---------------------------------------------------------------------------- */
12 /*
13 $begin cppadcg_mat_mul.cpp$$
14 $spell
15     cppadcg
16 $$
17 
18 $section Cppadcg Speed: Matrix Multiplication$$
19 
20 
21 $head Specifications$$
22 $cref link_mat_mul$$
23 
24 $head Implementation$$
25 // a cppadcg version of this test is not yet implemented
26 $srccode%cpp% */
27 # include <map>
28 # include <cppad/utility/vector.hpp>
29 
30 // list of possible options
31 extern std::map<std::string, bool> global_option;
32 
link_mat_mul(size_t size,size_t repeat,CppAD::vector<double> & x,CppAD::vector<double> & z,CppAD::vector<double> & dz)33 bool link_mat_mul(
34     size_t                           size     ,
35     size_t                           repeat   ,
36     CppAD::vector<double>&           x        ,
37     CppAD::vector<double>&           z        ,
38     CppAD::vector<double>&           dz       )
39 {   return false; }
40 /* %$$
41 $end
42 */
43