|
Public Member Functions |
| | DBMPoint () throw (OutOfMemory,std::bad_alloc) |
| | DBMPoint (const DBMPoint &arg) throw (OutOfMemory,IllegalFirstValue) |
| | DBMPoint (int n) throw (OutOfMemory,InvalidDimension,std::bad_alloc) |
| | DBMPoint (const double *val, int n) throw (OutOfMemory,IllegalFirstValue,std::bad_alloc,InvalidDimension) |
| DBMPoint & | operator= (const DBMPoint &arg) |
| | ~DBMPoint () |
| int | size () const |
| double | get (int i) const throw (IndexOutOfRange) |
| const double * | begin () const |
| const double * | end () const |
| DBMPoint & | set (int i, double v) throw (IndexOutOfRange,InvalidBoundValue,std::bad_alloc) |
| DBMPoint & | operator<< (int v) throw (OutOfMemory,InvalidBoundValue,std::bad_alloc) |
| DBMPoint & | operator<< (double v) throw (OutOfMemory,InvalidBoundValue,std::bad_alloc) |
| DBMPoint & | operator<< (const DBMPoint &a) throw (OutOfMemory,InvalidBoundValue,std::bad_alloc) |
| DBMPoint & | operator<< (const DBMVector &a) throw (OutOfMemory,InvalidBoundValue,std::bad_alloc) |
| char * | to_s () throw (std::bad_alloc) |
Private Types |
| typedef PointerAS< double > | dvec_t |
Private Attributes |
| char * | str |
| dvec_t | vec |