aboutsummaryrefslogtreecommitdiff
path: root/etc/compile-by-zinc
diff options
context:
space:
mode:
Diffstat (limited to 'etc/compile-by-zinc')
-rwxr-xr-xetc/compile-by-zinc/compile-to-zinc.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/etc/compile-by-zinc/compile-to-zinc.py b/etc/compile-by-zinc/compile-to-zinc.py
index 0b91ae073..8d5b7733f 100755
--- a/etc/compile-by-zinc/compile-to-zinc.py
+++ b/etc/compile-by-zinc/compile-to-zinc.py
@@ -353,7 +353,7 @@ def make_assign_locations_to_instructions_cumulatively(data):
ret += 'constraint alldifferent(output_locations);\n'
return ret
- def make_dependencies_old(input_data):
+ def make_dependencies(input_data):
var_names = get_var_names(input_data)
ret = ''
for line in input_data['lines']:
@@ -366,14 +366,14 @@ def make_assign_locations_to_instructions_cumulatively(data):
ret += '\n'
return ret
- def make_dependencies(input_data):
+ def make_dependencies_new(input_data):
var_names = get_var_names(input_data)
ret = ''
ret += 'array[INSTRUCTIONS,INSTRUCTIONS] of var 0..1: depends_on;\n'
dependencies = {}
- for line in input_data['lines']:
- dependencies[line['out']] = tuple(arg for arg in line['args']
- if arg in var_names and arg[0] not in '0123456789')
+ #for line in input_data['lines']:
+ # dependencies[line['out']] = tuple(arg for arg in line['args']
+ # if arg in var_names and arg[0] not in '0123456789')
# HERE