Bump version number

pull/1164/head
Bernhard Mueller 5 years ago
parent 96e6e0b73c
commit c9a35c3f60
  1. 2
      mythril/__version__.py
  2. 5
      mythril/laser/smt/bitvecfunc.py

@ -4,4 +4,4 @@ This file is suitable for sourcing inside POSIX shell, e.g. bash as well
as for importing into Python.
"""
__version__ = "v0.21.9"
__version__ = "v0.21.10"

@ -72,10 +72,15 @@ def _comparison_helper(
):
return Bool(z3.BoolVal(default_value), annotations=union)
'''
return And(
Bool(cast(z3.BoolRef, operation(a.raw, b.raw)), annotations=union),
a.input_ == b.input_ if inputs_equal else a.input_ != b.input_,
)
'''
return a.input_ == b.input_
class BitVecFunc(BitVec):

Loading…
Cancel
Save