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_det_lu.cpp$$
14 $spell
15     cppadcg
16     Lu
17 $$
18 
19 $section Cppadcg Speed: Gradient of Determinant Using Lu Factorization$$
20 
21 
22 $head Specifications$$
23 $cref link_det_lu$$
24 
25 $head Implementation$$
26 A cppadcg version of this test is not yet implemented
27 $srccode%cpp% */
28 # include <map>
29 # include <cppad/utility/vector.hpp>
30 
31 // list of possible options
32 extern std::map<std::string, bool> global_option;
33 
link_det_lu(size_t size,size_t repeat,CppAD::vector<double> & matrix,CppAD::vector<double> & gradient)34 bool link_det_lu(
35     size_t                     size     ,
36     size_t                     repeat   ,
37     CppAD::vector<double>     &matrix   ,
38     CppAD::vector<double>     &gradient )
39 {   return false; }
40 /* %$$
41 $end
42 */
43