Fixed query search
This commit is contained in:
parent
da51882d8a
commit
7c5aba1ca9
|
@ -107,11 +107,11 @@ def decode_query(orig_query, dependency_type, feats_detailed_list):
|
||||||
root = None
|
root = None
|
||||||
for i, node_action in enumerate(node_actions):
|
for i, node_action in enumerate(node_actions):
|
||||||
if i < root_index:
|
if i < root_index:
|
||||||
children.append(decode_query(node_action, priority_actions[i][1:]))
|
children.append(decode_query(node_action, priority_actions[i][1:], feats_detailed_list))
|
||||||
elif i > root_index:
|
elif i > root_index:
|
||||||
children.append(decode_query(node_action, priority_actions[i - 1][1:]))
|
children.append(decode_query(node_action, priority_actions[i - 1][1:], feats_detailed_list))
|
||||||
else:
|
else:
|
||||||
root = decode_query(node_action, dependency_type)
|
root = decode_query(node_action, dependency_type, feats_detailed_list)
|
||||||
if children:
|
if children:
|
||||||
root["children"] = children
|
root["children"] = children
|
||||||
return root
|
return root
|
||||||
|
|
Loading…
Reference in New Issue
Block a user