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
Another numpy 1.8 fix
  • Loading branch information
inducer committed Feb 17, 2014
1 parent 6c92cff commit 6d1293f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions hedge/discretization/local.py
Expand Up @@ -594,9 +594,11 @@ def face_vandermonde(self):
@memoize_method
def volume_up_interpolation_matrix(self):
from hedge.tools.linalg import leftsolve
return leftsolve(
return numpy.asarray(
leftsolve(
self.ldis.vandermonde(),
self.vandermonde())
self.vandermonde()),
order="C")

@memoize_method
def diff_vandermonde_matrices(self):
Expand Down

0 comments on commit 6d1293f

Please sign in to comment.