Skip to content

Commit

Permalink
Attempt to unbreak CI
Browse files Browse the repository at this point in the history
  • Loading branch information
stephankramer committed Jun 24, 2024
1 parent ea38c7f commit bfa07ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/tohoku_inversion/sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def generate(self):
for j, y in enumerate(self.Y):
for i, x in enumerate(self.X):
k = i + j * self.num_subfaults_par
xyij.assign(numpy.array([x, y]))
xyij.assign([x, y])
centroid = fd.Constant(self.xy0 + ufl.dot(R, xyij))
self.calculate_contribution(k, centroid)

Expand Down

0 comments on commit bfa07ad

Please sign in to comment.