Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 5b8e2849 authored by Olivier COULAUD's avatar Olivier COULAUD
Browse files

Add index and level in operator <<

parent eb2bc23c
No related branches found
No related tags found
No related merge requests found
...@@ -187,6 +187,8 @@ public: ...@@ -187,6 +187,8 @@ public:
} }
template <class StreamClass> template <class StreamClass>
friend StreamClass& operator<<(StreamClass& output, const FUnifCell<FReal,ORDER, NRHS, NLHS, NVALS>& cell){ friend StreamClass& operator<<(StreamClass& output, const FUnifCell<FReal,ORDER, NRHS, NLHS, NVALS>& cell){
output << "Symbolic: level " << cell.getLevel()
<< " Morton: " << cell.getMortonIndex() << std::endl;
output << "Multipole exp NRHS " << NRHS output << "Multipole exp NRHS " << NRHS
<< " NVALS " << NVALS << " NVALS " << NVALS
<< " VectorSize " << cell.getVectorSize() << " VectorSize " << cell.getVectorSize()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment