not using reserverd keyword "type"

This commit is contained in:
Martin Diehl 2016-10-29 10:28:34 +02:00
parent 1a56ad7a72
commit 7e6e2e1c84
1 changed files with 9 additions and 9 deletions

View File

@ -67,7 +67,7 @@ for name in filenames:
# --- write packed microstructure information ----------------------------------------------------- # --- write packed microstructure information -----------------------------------------------------
type = '' compressType = ''
former = start = -1 former = start = -1
reps = 0 reps = 0
@ -82,24 +82,24 @@ for name in filenames:
for current in items: for current in items:
if current == former+1 and start+reps == former+1: if current == former+1 and start+reps == former+1:
type = 'to' compressType = 'to'
reps += 1 reps += 1
elif current == former and start == former: elif current == former and start == former:
type = 'of' compressType = 'of'
reps += 1 reps += 1
else: else:
if type == '': if compressType == '':
table.data = [] table.data = []
elif type == '.': elif compressType == '.':
table.data = [former] table.data = [former]
elif type == 'to': elif compressType == 'to':
table.data = [start,'to',former] table.data = [start,'to',former]
elif type == 'of': elif compressType == 'of':
table.data = [reps,'of',former] table.data = [reps,'of',former]
outputAlive = table.data_write(delimiter = ' ') # output processed line outputAlive = table.data_write(delimiter = ' ') # output processed line
type = '.' compressType = '.'
start = current start = current
reps = 1 reps = 1
@ -109,7 +109,7 @@ for name in filenames:
'.' : [former], '.' : [former],
'to': [former-reps+1,'to',former], 'to': [former-reps+1,'to',former],
'of': [reps,'of',former], 'of': [reps,'of',former],
}[type] }[compressType]
outputAlive = table.data_write(delimiter = ' ') # output processed line outputAlive = table.data_write(delimiter = ' ') # output processed line