6#ifndef CHEBYSHEV_INTERVAL_H
7#define CHEBYSHEV_INTERVAL_H
double real_t
Floating-point type, used as default for function arguments.
Definition common.h:37
General namespace of the framework.
Definition benchmark.h:22
constexpr FloatType get_nan()
Get a quiet NaN of the specified floating point type.
Definition common.h:65
An interval on the real numbers.
Definition interval.h:16
real_t length() const
Returns the length of the interval.
Definition interval.h:33
double a
Lower extreme of the interval.
Definition interval.h:19
interval(real_t l, real_t r)
Construct an interval from its lower and upper bounds.
Definition interval.h:29
double b
Upper extreme of the interval.
Definition interval.h:22
interval()
Construct over the origin.
Definition interval.h:25