CppAD: A C++ Algorithmic Differentiation Package  20171217
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
size_pair.hpp
Go to the documentation of this file.
1 // $Id$
2 # ifndef CPPAD_LOCAL_OPTIMIZE_SIZE_PAIR_HPP
3 # define CPPAD_LOCAL_OPTIMIZE_SIZE_PAIR_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 size_pair.hpp
16 Information for one variable and one operation sequence.
17 */
18 // BEGIN_CPPAD_LOCAL_OPTIMIZE_NAMESPACE
19 namespace CppAD { namespace local { namespace optimize {
20 
21 /*!
22 \file size_pair.hpp
23 Information for one variable in one operation sequence.
24 */
26  size_t i_op; /// operator index for this variable
27  size_t i_var; /// variable index for this variable
28 };
29 
30 } } } // END_CPPAD_LOCAL_OPTIMIZE_NAMESPACE
31 
32 # endif
size_t i_var
operator index for this variable
Definition: size_pair.hpp:27