/home/coin/SVN-release/CoinAll-1.1.0/cppad/cppad/local/sub.hpp

Go to the documentation of this file.
00001 # ifndef CPPAD_SUB_INCLUDED
00002 # define CPPAD_SUB_INCLUDED
00003 
00004 /* --------------------------------------------------------------------------
00005 CppAD: C++ Algorithmic Differentiation: Copyright (C) 2003-07 Bradley M. Bell
00006 
00007 CppAD is distributed under multiple licenses. This distribution is under
00008 the terms of the 
00009                     Common Public License Version 1.0.
00010 
00011 A copy of this license is included in the COPYING file of this distribution.
00012 Please visit http://www.coin-or.org/CppAD/ for information on other licenses.
00013 -------------------------------------------------------------------------- */
00014 
00015 //  BEGIN CppAD namespace
00016 namespace CppAD {
00017 
00018 template <class Base>
00019 AD<Base> AD<Base>::operator -(const AD<Base> &right) const
00020 {
00021         AD<Base> result;
00022         CPPAD_ASSERT_UNKNOWN( Parameter(result) );
00023 
00024         result.value_  = value_ - right.value_;
00025 
00026         if( Variable(*this) )
00027         {       if( Variable(right) )
00028                 {       // result = variable - variable
00029                         CPPAD_ASSERT_KNOWN(
00030                                 id_ == right.id_,
00031                                 "Subtracting AD objects that are"
00032                                 " variables on different tapes."
00033                         );
00034                         tape_this()->RecordOp(SubvvOp, 
00035                                 result, taddr_, right.taddr_
00036                         );
00037                 }
00038                 else if( IdenticalZero(right.value_) )
00039                 {       // result = variable - 0
00040                         result.make_variable(id_, taddr_);
00041                 }
00042                 else
00043                 {       // result = variable - parameter
00044                         tape_this()->RecordOp(SubvpOp, 
00045                                 result, taddr_, right.value_
00046                         );
00047                 }
00048         }
00049         else if( Variable(right) )
00050         {       // result = parameter - variable
00051                 right.tape_this()->RecordOp(SubpvOp, 
00052                         result, value_, right.taddr_
00053                 );
00054         }
00055 
00056         return result;
00057 }
00058 
00059 // convert other cases to the case above
00060 CPPAD_FOLD_AD_VALUED_BINARY_OPERATOR(-)
00061 
00062 
00063 } // END CppAD namespace
00064 
00065 # endif 

Generated on Sun Nov 14 14:06:33 2010 for Coin-All by  doxygen 1.4.7