Comment 3 for bug 1086310

Revision history for this message
Martin Sandve Alnæs (martinal) wrote :

Actually, the crash seems to be at the end of the entire program, and it only happens if I have plotted twice:

from dolfin import *
mesh = UnitSquare(1,1)
V = FunctionSpace(mesh, "CG", 1)
f = Function(V)
g = Function(V)
plot(f, title='f')
plot(g, title='g')