diff options
author | Adrian Kummerlaender | 2019-10-28 22:29:50 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2019-10-28 22:33:53 +0100 |
commit | 15c0cba693646269c04f245ca52f405ddfdb4a07 (patch) | |
tree | cf18dc1465ae15aa3b9cd37caad98adb27a9bf17 | |
parent | 72e7097073b03e6584f603b905b5a4fc236d7def (diff) | |
download | boltzgen-15c0cba693646269c04f245ca52f405ddfdb4a07.tar boltzgen-15c0cba693646269c04f245ca52f405ddfdb4a07.tar.gz boltzgen-15c0cba693646269c04f245ca52f405ddfdb4a07.tar.bz2 boltzgen-15c0cba693646269c04f245ca52f405ddfdb4a07.tar.lz boltzgen-15c0cba693646269c04f245ca52f405ddfdb4a07.tar.xz boltzgen-15c0cba693646269c04f245ca52f405ddfdb4a07.tar.zst boltzgen-15c0cba693646269c04f245ca52f405ddfdb4a07.zip |
Set default order for custom ndindex overloadv0.1.0
-rw-r--r-- | boltzgen/geometry.py | 2 | ||||
-rw-r--r-- | boltzgen/utility/ndindex.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/boltzgen/geometry.py b/boltzgen/geometry.py index d4411ad..443dee2 100644 --- a/boltzgen/geometry.py +++ b/boltzgen/geometry.py @@ -25,7 +25,7 @@ class Geometry: raise Exception('Geometry malformed') def inner_cells(self, order='F'): - for idx in ndindex(self.inner_size(), order): + for idx in ndindex(self.inner_size(), order=order): yield tuple(map(lambda i: i + 1, idx)) def size(self): diff --git a/boltzgen/utility/ndindex.py b/boltzgen/utility/ndindex.py index 0c5ed9b..263077a 100644 --- a/boltzgen/utility/ndindex.py +++ b/boltzgen/utility/ndindex.py @@ -5,7 +5,7 @@ import numpy.core.numeric as _nx class ndindex(numpy.ndindex): pass - def __init__(self, *shape, order): + def __init__(self, *shape, order='F'): if len(shape) == 1 and isinstance(shape[0], tuple): shape = shape[0] x = as_strided(_nx.zeros(1), shape=shape, |