Ignore reachability for now

pull/164/head
Joran Honig 7 years ago
parent 2dd937101a
commit f7b2bcead9
  1. 6
      mythril/analysis/modules/integer.py

@ -273,8 +273,8 @@ def _search_children(statespace, node, expression, constraint=[], index=0, depth
element = _check_usage(current_state, expression) element = _check_usage(current_state, expression)
if len(element) < 1: if len(element) < 1:
continue continue
if _check_requires(element[0], node, statespace, constraint): # if _check_requires(element[0], node, statespace, constraint):
pass # pass
results += element results += element
# Recursively search children # Recursively search children
@ -283,7 +283,7 @@ def _search_children(statespace, node, expression, constraint=[], index=0, depth
statespace.nodes[edge.node_to] statespace.nodes[edge.node_to]
for edge in statespace.edges for edge in statespace.edges
if edge.node_from == node.uid if edge.node_from == node.uid
and _try_constraints(statespace.nodes[edge.node_to].constraints, constraint) is not None # and _try_constraints(statespace.nodes[edge.node_to].constraints, constraint) is not None
] ]
for child in children: for child in children:

Loading…
Cancel
Save