Prev Next include_deprecated

Deprecated Include Files

Purpose
The following is a list of deprecated include file names and the corresponding names that should be used. For example, if your program uses the deprecated preprocessor command
     # include <CppAD/CppAD.h>
you should change it to the command
     # include <cppad/cppad.hpp>

Linking New Files to Deprecated Commands
On Unix systems, references in your source code of the from
     # include <CppAD/
name.h>
will refer to the older versions of CppAD unless you preform the following steps (this only needs to be done once, not for every install):
     cp 
PrefixDir/include
     sudo mv CppAD CppAD.old
     sudo ln -s cppad CppAD
where PrefixDir is the prefix directory corresponding to your Unix installation . This will link form the deprecated commands to the commands that should be used:
Deprecated    Should Use    Documentation
CppAD/CheckNumericType.h    cppad/check_numeric_type.hpp    CheckNumericType
CppAD/CheckSimpleVector.h    cppad/check_simple_vector.hpp    CheckSimpleVector
CppAD/CppAD.h    cppad/cppad.hpp    CppAD
CppAD/CppAD_vector.h    cppad/vector.hpp    CppAD_vector
CppAD/ErrorHandler.h    cppad/error_handler.hpp    ErrorHandler
CppAD/LuFactor.h    cppad/lu_factor.hpp    LuFactor
CppAD/LuInvert.h    cppad/lu_invert.hpp    LuInvert
CppAD/LuSolve.h    cppad/lu_solve.hpp    LuSolve
CppAD/NearEqual.h    cppad/near_equal.hpp    NearEqual
CppAD/OdeErrControl.h    cppad/ode_err_control.hpp    OdeErrControl
CppAD/OdeGear.h    cppad/ode_gear.hpp    OdeGear
CppAD/OdeGearControl.h    cppad/ode_gear_control.hpp    OdeGearControl
CppAD/Poly.h    cppad/poly.hpp    Poly
CppAD/RombergMul.h    cppad/romberg_mul.hpp    RombergMul
CppAD/RombergOne.h    cppad/romberg_one.hpp    RombergOne
CppAD/Rosen34.h    cppad/rosen_34.hpp    Rosen34
CppAD/Runge45.h    cppad/runge_45.hpp    Runge45
CppAD/SpeedTest.h    cppad/speed_test.hpp    SpeedTest
CppAD/TrackNewDel.h    cppad/track_new_del.hpp    TrackNewDel

Input File: omh/include_deprecated.omh