This commit is contained in:
leaf corcoran 2016-04-13 19:30:11 -07:00
parent d573ba1953
commit c5cbf3315e
2 changed files with 2 additions and 2 deletions

View File

@ -136,7 +136,7 @@ return {
current = next current = next
end end
for _index_0 = 4, #node do for _index_0 = 4, #node do
cond = node[_index_0] local cond = node[_index_0]
add_clause(cond) add_clause(cond)
end end
return root return root

View File

@ -31,7 +31,7 @@ local tree
tree = function(block) tree = function(block)
local _list_0 = block local _list_0 = block
for _index_0 = 1, #_list_0 do for _index_0 = 1, #_list_0 do
value = _list_0[_index_0] local value = _list_0[_index_0]
print(flat_value(value)) print(flat_value(value))
end end
end end