CppAD: A C++ Algorithmic Differentiation Package  20171217
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
old2new.hpp
Go to the documentation of this file.
1 // $Id$
2 # ifndef CPPAD_LOCAL_OPTIMIZE_OLD2NEW_HPP
3 # define CPPAD_LOCAL_OPTIMIZE_OLD2NEW_HPP
4 /* --------------------------------------------------------------------------
5 CppAD: C++ Algorithmic Differentiation: Copyright (C) 2003-16 Bradley M. Bell
6 
7 CppAD is distributed under multiple licenses. This distribution is under
8 the terms of the
9  Eclipse Public License Version 1.0.
10 
11 A copy of this license is included in the COPYING file of this distribution.
12 Please visit http://www.coin-or.org/CppAD/ for information on other licenses.
13 -------------------------------------------------------------------------- */
14 /*!
15 \file old2new.hpp
16 Information that maps old an old operator to a new opeator and new variable.
17 */
18 
19 // BEGIN_CPPAD_LOCAL_OPTIMIZE_NAMESPACE
20 namespace CppAD { namespace local { namespace optimize {
21 /*!
22 Information that maps old an old operator to a new opeator and new variable.
23 */
25  /// New operator index for this old operator.
27 
28  /// New varaible index for this old operator.
30 };
31 
32 } } } // END_CPPAD_LOCAL_OPTIMIZE_NAMESPACE
33 
34 # endif
CPPAD_TAPE_ADDR_TYPE addr_t
Definition: declare_ad.hpp:44
Information that maps old an old operator to a new opeator and new variable.
Definition: old2new.hpp:24
addr_t new_var
New varaible index for this old operator.
Definition: old2new.hpp:29
addr_t new_op
New operator index for this old operator.
Definition: old2new.hpp:26