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)
if len(element) < 1:
continue
if _check_requires(element[0], node, statespace, constraint):
pass
# if _check_requires(element[0], node, statespace, constraint):
# pass
results += element
# Recursively search children
@ -283,7 +283,7 @@ def _search_children(statespace, node, expression, constraint=[], index=0, depth
statespace.nodes[edge.node_to]
for edge in statespace.edges
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:

Loading…
Cancel
Save