dolfin team mailing list archive
-
dolfin team
-
Mailing list archive
-
Message #13109
[HG DOLFIN] More work on parallell numbering of mesh entities.
One or more new changesets pushed to the primary dolfin repository.
A short summary of the last three changesets is included below.
changeset: 6005:68b2dc927f857e686f4990c7125c212eef24c012
tag: tip
user: "Ola Skavhaug <skavhaug@xxxxxxxxx>"
date: Mon Apr 20 14:11:49 2009 +0200
files: dolfin/mesh/MeshPartitioning.cpp sandbox/passembly/Poisson.h
description:
More work on parallell numbering of mesh entities.
changeset: 6004:882f85ed7100e3e5311c1b26920d1b684193506f
user: "Ola Skavhaug <skavhaug@xxxxxxxxx>"
date: Mon Apr 20 13:51:48 2009 +0200
files: dolfin/main/mpiutils.h
description:
Don't assert non empty sendbuffer.
changeset: 6003:010f9db3ecb7456374a12e3510ff1c93847d5f6b
user: "Johan Hake <hake@xxxxxxxxx>"
date: Fri Apr 17 09:20:16 2009 +0200
files: ChangeLog dolfin/swig/dolfin_la_post.i dolfin/swig/dolfin_la_pre.i test/unit/la/python/test.py
description:
Added slicing capabilities for GenericVector interface in PyDOLFIN:
We can now e.g. do things like:
v = Vector(10)
v[:] = 1.0
v[0:10:2] = 2.0
v[0:10:2] = v[1:10:2]
v[[0,3,4,6,9]] = v[1:10:2]
in the PyDOLFIN interface. A sliced Vector returns a copy of the old Vector.
I have added a bunch of tests that covers some user cases, but please report
any missbehaviours.
----------------------------------------------------------------------
For more details, visit http://www.fenics.org/hg/dolfin
Follow ups