not used, error prone for row/major column hickups

This commit is contained in:
Martin Diehl 2017-05-02 07:29:52 +02:00
parent 5ccfc10bc3
commit ff16a0866c
1 changed files with 0 additions and 14 deletions

View File

@ -100,20 +100,6 @@ def execute(cmd,
if process.returncode != 0: raise RuntimeError('{} failed with returncode {}'.format(cmd,process.returncode))
return out,error
# -----------------------------
def gridLocation(idx,res):
return ( idx % res[0], \
( idx // res[0]) % res[1], \
( idx // res[0] // res[1]) % res[2] )
# -----------------------------
def gridIndex(location,res):
return ( location[0] % res[0] + \
( location[1] % res[1]) * res[0] + \
( location[2] % res[2]) * res[1] * res[0] )
# -----------------------------
class extendableOption(Option):
"""