#include <Interval.hpp>
Public Member Functions | |
| const real_t & | a () const |
| const real_t & | b () const |
| Interval (const Interval &i) | |
| Interval (const real_t &a, const real_t &b) | |
| ~Interval () | |
Private Attributes | |
| const real_t | __a |
| const real_t | __b |
Definition at line 33 of file Interval.hpp.
| Interval::Interval | ( | const Interval & | i | ) |
| Interval::Interval | ( | const real_t & | a, | |
| const real_t & | b | |||
| ) |
| Interval::~Interval | ( | ) |
| const real_t & Interval::a | ( | ) | const |
Read-only access to 
Definition at line 46 of file Interval.cpp.
References __a.
Referenced by GaussLobatto::__bisection(), GaussLobatto::__newton(), SpectralConformTransformation::determinant(), SpectralConformTransformation::inverse(), SpectralConformTransformation::inverseDeterminant(), and SpectralConformTransformation::operator()().
00047 { 00048 return __a; 00049 }
| const real_t & Interval::b | ( | ) | const |
Read-only access to 
Definition at line 52 of file Interval.cpp.
References __b.
Referenced by GaussLobatto::__bisection(), GaussLobatto::__newton(), SpectralConformTransformation::determinant(), SpectralConformTransformation::inverse(), SpectralConformTransformation::inverseDeterminant(), and SpectralConformTransformation::operator()().
00053 { 00054 return __b; 00055 }
const real_t Interval::__a [private] |
const real_t Interval::__b [private] |
1.5.6