> class Problem > ... > Triangulation<dim> tri; > DoFHandler<dim> dof; > FESystem<dim> fe; > };
> Object of class N6dealii4FE_QILi2ELi2EEE is still used by 1 other objects. > from Subscriber N6dealii8FESystemILi2ELi2EEE Move the FESystem in your class definition (see above) before the DoFHandler (and after the Triangulation). Otherwise they are destructed in the wrong order and this error occurs. -- Timo Heister http://www.math.tamu.edu/~heister/ _______________________________________________ dealii mailing list http://poisson.dealii.org/mailman/listinfo/dealii
