Skip to content

Commit

Permalink
Inv -> solve
Browse files Browse the repository at this point in the history
  • Loading branch information
krenzland committed Nov 30, 2023
1 parent 378eb49 commit ae090bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/seissol_matrices/dr_matrices.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def V2QuadTo2m(self):

mass = self.dg2_generator.mass_matrix()

V = np.linalg.inv(mass) @ E
V = np.linalg.solve(mass, E)

return V

Expand Down

0 comments on commit ae090bb

Please sign in to comment.