Skip to content
Snippets Groups Projects
Commit f8766619 authored by Martin Schönherr's avatar Martin Schönherr
Browse files

add remaining funktions for qs in gridreader

parent bff35ec6
No related branches found
No related tags found
No related merge requests found
......@@ -200,4 +200,5 @@ void BoundaryQs::getIndices(std::vector<std::vector<uint> > &indices) {
for (int level = 0; level < this->indices.size(); level++)
for (int index = 0; index < this->indices[level].size(); index++)
indices[level].push_back(this->indices[level][index]);
}
\ No newline at end of file
}
......@@ -36,6 +36,8 @@ public:
void setValues(real** q27, unsigned int level) const;
void getQs(std::vector<std::vector<std::vector<real> > > &qs);
void getIndices(std::vector<std::vector<uint> > &indices);
//void initArray(real* ptr, unsigned int level, unsigned int column);
//void initIndex(int *ptr, unsigned int level);
private:
std::vector< std::vector<std::vector<real> > >values;
......
......@@ -111,7 +111,7 @@
#define c10eM30 1e-30
#define c10eM10 1e-10
#define smallSingle 0.0000000002
#endif
#else
#define c1o2 0.5f
......@@ -222,3 +222,5 @@
#define smallSingle 0.0000000002f
#endif
#endif
\ No newline at end of file
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