Skip to content
Snippets Groups Projects
Commit a12fef07 authored by Thomas Witkowski's avatar Thomas Witkowski
Browse files

* Small update for writing 2nd-degree Lagrange elements

parent 7475e1b0
No related branches found
No related tags found
No related merge requests found
......@@ -84,12 +84,8 @@ namespace AMDiS {
file << " <DataArray type=\"Float32\" Name=\"value" << i
<< "\" format=\"ascii\">" << ::std::endl;
if ((dim_ == 2) && (degree_ == 2)) {
writeVertexValues_dim2_degree2(file, i);
} else {
writeVertexValues(file, i);
}
writeVertexValues(file, i);
file << " </DataArray>" << ::std::endl;
}
......
......@@ -69,12 +69,6 @@ namespace AMDiS {
void writeVertexValues(::std::ofstream &file, int componentNo);
/** \brief
*
*/
void writeVertexValues_dim2_degree2(::std::ofstream &file, int componentNo);
/** \brief
*
*/
......
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