[deal.II] Re: How to clear data of triangulation completely

2017-08-01 Thread Jean-Paul Pelteret
Dear Felix, Like Bruno said, if you call clear() on the triangulation at the end of this cycle then it should work. Here you can see that regardless of what other objects are "subscribed"

[deal.II] Re: How to clear data of triangulation completely

2017-08-01 Thread Bruno Turcksin
Felix, it should work. I have done something similar in the past. Can you send a small example that shows the problem. Best, Bruno On Tuesday, August 1, 2017 at 1:26:00 PM UTC-4, Felix Lorenz wrote: > > Hello everybody, > I have the following problem: > > Class C{ > ... > > Triangulation <

[deal.II] How to clear data of triangulation completely

2017-08-01 Thread Felix Lorenz
Hello everybody, I have the following problem: Class C{ ... Triangulation <1,2>boundary_triangulation; FE_Q<1,2> boundary_fe; DoFHandler <1,2> boundary_dof_handler; MappingQGeneric <1,2> boundary_map; ..