From e1bc06ae5f5b5557a56bbe70a815623746439e19 Mon Sep 17 00:00:00 2001
From: epapoutsellis <epapoutsellis@gmail.com>
Date: Wed, 12 Jun 2019 16:48:10 +0100
Subject: fix power method

---
 Wrappers/Python/ccpi/astra/operators/AstraProjectorSimple.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Wrappers/Python/ccpi/astra/operators/AstraProjectorSimple.py b/Wrappers/Python/ccpi/astra/operators/AstraProjectorSimple.py
index ffe4700..618ec96 100644
--- a/Wrappers/Python/ccpi/astra/operators/AstraProjectorSimple.py
+++ b/Wrappers/Python/ccpi/astra/operators/AstraProjectorSimple.py
@@ -65,5 +65,5 @@ class AstraProjectorSimple(LinearOperator):
     
     def norm(self):
         x0 = self.volume_geometry.allocate('random')
-        self.s1, sall, svec = LinearOperator.PowerMethodNonsquare(self, 50, x0)
+        self.s1, sall, svec = LinearOperator.PowerMethod(self, 50, x0)
         return self.s1
-- 
cgit v1.2.3