From d63c549589a234309ef6403a001530ae2c8e9142 Mon Sep 17 00:00:00 2001 From: seogi_macbook Date: Fri, 29 Jan 2016 07:38:23 -0800 Subject: [PATCH] minor change --- SimPEG/Maps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SimPEG/Maps.py b/SimPEG/Maps.py index b39a1634..bc637fd8 100644 --- a/SimPEG/Maps.py +++ b/SimPEG/Maps.py @@ -521,7 +521,7 @@ class Mesh2MeshTopo(IdentityMap): J = Utils.mkvc(inds) P = sp.coo_matrix( (Utils.mkvc(w),(I, J)), shape=(inds.shape[0], (self.actind).sum()) ) # self.P = Utils.sdiag(self.mesh2.vol[self.actind2])*P.tocsc() - self.P = P.tocsc() + self.P = P.tocsr() @property def shape(self):