dolfin team mailing list archive
-
dolfin team
-
Mailing list archive
-
Message #15415
[Bug 430040] [NEW] Use File objects to read meshes from file fails in parallel
Public bug reported:
The following code does not create a distributed mesh in parallel:
File f("somemeshfile.xml");
Mesh mesh;
f >> mesh;
The following code works as expected, i.e. a distributed mesh in
constructed:
Mesh mesh("somemeshfile.xml");
** Affects: dolfin
Importance: Undecided
Status: New
--
Use File objects to read meshes from file fails in parallel
https://bugs.launchpad.net/bugs/430040
You received this bug notification because you are subscribed to DOLFIN.
Status in DOLFIN: New
Bug description:
The following code does not create a distributed mesh in parallel:
File f("somemeshfile.xml");
Mesh mesh;
f >> mesh;
The following code works as expected, i.e. a distributed mesh in constructed:
Mesh mesh("somemeshfile.xml");
Follow ups
References