Skip to content
This repository has been archived by the owner on Jul 14, 2022. It is now read-only.

Commit

Permalink
fix is points call
Browse files Browse the repository at this point in the history
  • Loading branch information
mclarsen committed Nov 2, 2020
1 parent ff11e7f commit 95fee60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vtkh/DataSet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ DataSet::IsPointMesh() const

if(dom.GetCellSet().GetNumberOfCells() > 0)
{
is_points = (single_type || shape_type == 1) && is_points;
is_points = (single_type && (shape_type == 1)) && is_points;
}
}

Expand Down

0 comments on commit 95fee60

Please sign in to comment.