/usr/include/openturns/auxiliary.h is in libopenturns-dev 0.15-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | /**********************************************************************
* Author: Leo Liberti *
* Name: auxiliary.h *
* Source: GNU C++ *
* Purpose: prototypes for auxiliary functions in expression.cxx *
* History: 030121 0.0 work started *
* License: (C) Leo Liberti, all rights reserved. Code published under the
Common Public License.
***********************************************************************/
namespace Ev3 {
bool is_integer(const double);
bool is_even(const double);
bool is_odd(const double);
double Ev3NearZero(void);
double Ev3Infinity(void);
} /* namespace Ev3 */
|