Skip to content
This repository has been archived by the owner on Mar 8, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Avg groups: Add a cast that seems necessary on hpcgeek.
  • Loading branch information
Andreas Kloeckner committed Mar 28, 2010
1 parent 8fec889 commit 254af5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyrticle/meshdata.py
Expand Up @@ -72,7 +72,7 @@ def fill_from_hedge(self, discr):
el_range = discr.find_el_range(el.id)
ei.start, ei.end = el_range.start, el_range.stop

ei.vertices.extend([vi for vi in el.vertex_indices])
ei.vertices.extend([int(vi) for vi in el.vertex_indices])

all_face_vertex_indices = el.face_vertices(el.vertex_indices)

Expand Down

0 comments on commit 254af5a

Please sign in to comment.