diff options
author | epapoutsellis <epapoutsellis@gmail.com> | 2019-06-12 15:05:09 +0100 |
---|---|---|
committer | epapoutsellis <epapoutsellis@gmail.com> | 2019-06-12 15:05:09 +0100 |
commit | 095e9923b3fbc7a4ead3159510f3c6dea8959198 (patch) | |
tree | 8b3ddde2c636e4aae4139c8ca06402484915aeef /Wrappers | |
parent | 25b16a2532d3fd470ce3cba58a40cdf7a3ea2a33 (diff) | |
download | framework-095e9923b3fbc7a4ead3159510f3c6dea8959198.tar.gz framework-095e9923b3fbc7a4ead3159510f3c6dea8959198.tar.bz2 framework-095e9923b3fbc7a4ead3159510f3c6dea8959198.tar.xz framework-095e9923b3fbc7a4ead3159510f3c6dea8959198.zip |
add random
Diffstat (limited to 'Wrappers')
-rwxr-xr-x | Wrappers/Python/ccpi/framework/BlockGeometry.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Wrappers/Python/ccpi/framework/BlockGeometry.py b/Wrappers/Python/ccpi/framework/BlockGeometry.py index ed44d99..e58035b 100755 --- a/Wrappers/Python/ccpi/framework/BlockGeometry.py +++ b/Wrappers/Python/ccpi/framework/BlockGeometry.py @@ -10,6 +10,12 @@ from ccpi.framework import BlockDataContainer #from ccpi.optimisation.operators import Operator, LinearOperator
class BlockGeometry(object):
+
+ RANDOM = 'random'
+ RANDOM_INT = 'random_int'
+
+
+
'''Class to hold Geometry as column vector'''
#__array_priority__ = 1
def __init__(self, *args, **kwargs):
|