Skip to content

WIP: Adding print statements to show issues with filter

Andrew Bauer requested to merge acbauer/vtk:fix_CellTypesSource into master

This DOESN'T properly fix the problem but it shows that the memory access error. To reproduce this error in ParaView:

  1. Create an Unstructured Cell Types source
  2. Set the Cell Type to Lagrange Wedge
  3. Set the Cell Order to 2
  4. Enable Add nodes to complete polynomial basis

Without this change I get a crash due to memory corruption. With this change it shows that the code tries to access the -1 index of two std::vectors.

Merge request reports