← Back to team overview

dolfin team mailing list archive

reading EpstraVector from file

 

Hi, I get a segmentation fault when reading and EpetraVector from file
as follows,

from dolfin import *

dolfin_set("linear algebra backend", "Epetra")
dhat_vector = Vector()
file = File("dhat_vector.xml")
file >> dhat_vector

Anyone knows why ?

Kent