00001 /* 00002 * This file is part of ACADO Toolkit. 00003 * 00004 * ACADO Toolkit -- A Toolkit for Automatic Control and Dynamic Optimization. 00005 * Copyright (C) 2008-2014 by Boris Houska, Hans Joachim Ferreau, 00006 * Milan Vukov, Rien Quirynen, KU Leuven. 00007 * Developed within the Optimization in Engineering Center (OPTEC) 00008 * under supervision of Moritz Diehl. All rights reserved. 00009 * 00010 * ACADO Toolkit is free software; you can redistribute it and/or 00011 * modify it under the terms of the GNU Lesser General Public 00012 * License as published by the Free Software Foundation; either 00013 * version 3 of the License, or (at your option) any later version. 00014 * 00015 * ACADO Toolkit is distributed in the hope that it will be useful, 00016 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00018 * Lesser General Public License for more details. 00019 * 00020 * You should have received a copy of the GNU Lesser General Public 00021 * License along with ACADO Toolkit; if not, write to the Free Software 00022 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00023 * 00024 */ 00025 00026 00035 #ifndef ACADO_TOOLKIT_ACADO_CONSTANTS_HPP 00036 #define ACADO_TOOLKIT_ACADO_CONSTANTS_HPP 00037 00038 #include <acado/utils/acado_types.hpp> 00039 00040 BEGIN_NAMESPACE_ACADO 00041 00043 const double EPS = 2.221e-16; 00044 00046 const double ZERO_EPS = 2.221e-16; 00047 00049 const double EQUALITY_EPS = 1.0e-12; 00050 00052 const double SQRT_EPS = 1.490301982821e-08; 00053 00055 const double THIRD_ROOT_EPS = 6.055957976542e-06; 00056 00058 const double FOURTH_ROOT_EPS = 1.22077925228967e-04; 00059 00062 const double ZERO = 1.0e-50; 00063 00065 const double INFTY = 1.0e12; 00066 00069 #ifndef INFINITY 00070 const double INFINITY = 1.0/1e-53; 00071 #endif 00072 00074 const double ACADO_NAN = INFTY; 00075 00079 const double BOUNDTOL = 1.0e-10; 00080 00084 const double BOUNDRELAXATION = 1.0e3; 00085 00087 const double DEFAULT_SAMPLING_TIME = 1.0; 00088 00090 const unsigned int MAX_LENGTH_STRING = 1024; 00091 00093 const unsigned int MAX_LENGTH_NAME = 80; 00094 00095 CLOSE_NAMESPACE_ACADO 00096 00097 #endif // ACADO_TOOLKIT_ACADO_CONSTANTS_HPP 00098 00099 /* 00100 * end of file 00101 */