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