CPPLapack
 All Classes Files Functions Variables Friends Pages
Classes | Functions
dcomponent.hpp File Reference

Go to the source code of this file.

Classes

class  dcomponent
 Component Class for Real Double-precision Sparse Matrix Classes. More...
 

Functions

std::ostream & operator<< (std::ostream &s, const dcomponent &c)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  s,
const dcomponent c 
)
inline

Definition at line 32 of file dcomponent.hpp.

References dcomponent::i, dcomponent::j, and dcomponent::v.

33 {CPPL_VERBOSE_REPORT;
34  s << "(" << c.i << ", " << c.j << ", " << c.v << ")" << std::flush;
35  return s;
36 }
double v
value of the component
Definition: dcomponent.hpp:11
CPPL_INT i
i index of the component
Definition: dcomponent.hpp:9
CPPL_INT j
j index of the component
Definition: dcomponent.hpp:10