#include <typedefs.hh>
Name traits for number types. The name member of the template specializations of this class returns the name of the given number type, ie. Real or Cmplx. The main use of this is in debugging:
virtual std::ostream& info(std::ostream& os) const {
return os << "DummySpace<" << number<F>::name()
<< ">(dim = " << dim_ << ')'; } The name even changes if you are using quadruple precision by setting Real to long double.
Definition at line 71 of file typedefs.hh.