Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
fix mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Kliem committed Sep 9, 2020
1 parent f2dd072 commit fc8124a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ cdef class FaceIterator_base(SageObject):

# We start with the coatoms.
self.structure.newfaces[self.structure.dimension - 1] = <uint64_t **> self._mem.allocarray(self.coatoms.n_faces, sizeof(uint64_t*))
for j in self.coatoms.n_faces:
for j in range(self.coatoms.n_faces):
self.structure.newfaces[self.structure.dimension - 1][j] = self.coatoms.data[j]

# Initialize ``visited_all``.
Expand Down

0 comments on commit fc8124a

Please sign in to comment.