CppAD: A C++ Algorithmic Differentiation Package 20110419
|
00001 /* $Id$ */ 00002 # ifndef CPPAD_OP_INCLUDED 00003 # define CPPAD_OP_INCLUDED 00004 00005 /* -------------------------------------------------------------------------- 00006 CppAD: C++ Algorithmic Differentiation: Copyright (C) 2003-09 Bradley M. Bell 00007 00008 CppAD is distributed under multiple licenses. This distribution is under 00009 the terms of the 00010 Common Public License Version 1.0. 00011 00012 A copy of this license is included in the COPYING file of this distribution. 00013 Please visit http://www.coin-or.org/CppAD/ for information on other licenses. 00014 -------------------------------------------------------------------------- */ 00015 00016 // used by the sparse operators 00017 # include <cppad/local/sparse_pack.hpp> 00018 # include <cppad/local/sparse_set.hpp> 00019 00020 // operations 00021 # include <cppad/local/std_math_ad.hpp> 00022 # include <cppad/local/abs_op.hpp> 00023 # include <cppad/local/add_op.hpp> 00024 # include <cppad/local/acos_op.hpp> 00025 # include <cppad/local/asin_op.hpp> 00026 # include <cppad/local/atan_op.hpp> 00027 # include <cppad/local/comp_op.hpp> 00028 # include <cppad/local/cond_op.hpp> 00029 # include <cppad/local/cos_op.hpp> 00030 # include <cppad/local/cosh_op.hpp> 00031 # include <cppad/local/csum_op.hpp> 00032 # include <cppad/local/discrete_op.hpp> 00033 # include <cppad/local/div_op.hpp> 00034 # include <cppad/local/exp_op.hpp> 00035 # include <cppad/local/load_op.hpp> 00036 # include <cppad/local/log_op.hpp> 00037 # include <cppad/local/mul_op.hpp> 00038 # include <cppad/local/parameter_op.hpp> 00039 # include <cppad/local/pow_op.hpp> 00040 # include <cppad/local/print_op.hpp> 00041 # include <cppad/local/sin_op.hpp> 00042 # include <cppad/local/sinh_op.hpp> 00043 # include <cppad/local/sqrt_op.hpp> 00044 # include <cppad/local/sub_op.hpp> 00045 # include <cppad/local/sparse_binary_op.hpp> 00046 # include <cppad/local/sparse_unary_op.hpp> 00047 # include <cppad/local/store_op.hpp> 00048 00049 00050 # endif