Skip to content
Snippets Groups Projects
Commit b20db5e1 authored by Dave Moxey's avatar Dave Moxey
Browse files

Address Douglas' comments

parent 53bb5820
No related branches found
No related tags found
No related merge requests found
......@@ -146,9 +146,9 @@ namespace Nektar
// Array containing maximum information needed for the universal
// numbering later. For i = 0,1,2 for each geometry dimension:
//
// maxVertIds[2*i] = maximum geometry ID at dimension i
// maxVertIds[2*i] = maximum number of degrees of freedom for all
// elements of dimension i.
// maxVertIds[2*i] = maximum geometry ID at dimension i
// maxVertIds[2*i+1] = maximum number of degrees of freedom for all
// elements of dimension i.
Array<OneD, int> maxVertIds(6, -1);
// Iterator for idMats members.
......
......@@ -68,7 +68,7 @@ namespace Nektar
MetricRegexFieldValue val;
val.m_value = value->GetText();
val.m_useIntTolerance = true;
val.m_intTolerance = atof(value->Attribute("tolerance"));
val.m_intTolerance = atoi(value->Attribute("tolerance"));
if (!m_generate)
{
......
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