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 # include <cppad/utility/vector.hpp>
14 
15 /*
16 $begin xpackage_sparse_hessian.cpp$$
17 $spell
18     xpackage
19 $$
20 
21 $section Xpackage Speed: Sparse Hessian$$
22 
23 $head Specifications$$
24 $cref link_sparse_hessian$$
25 
26 $srccode%cpp% */
27 // A xpackage version of this test is not yet available
link_sparse_hessian(size_t size,size_t repeat,const CppAD::vector<size_t> & row,const CppAD::vector<size_t> & col,CppAD::vector<double> & x,CppAD::vector<double> & hessian,size_t & n_color)28 bool link_sparse_hessian(
29     size_t                            size      ,
30     size_t                            repeat    ,
31     const CppAD::vector<size_t>&      row       ,
32     const CppAD::vector<size_t>&      col       ,
33     CppAD::vector<double>&            x         ,
34     CppAD::vector<double>&            hessian   ,
35     size_t&                           n_color
36 )
37 {   return false; }
38 /* %$$
39 $end
40 */
41