Skip to content

Commit

Permalink
Remove special identical implementation for BV
Browse files Browse the repository at this point in the history
  • Loading branch information
twizmwazin committed Oct 2, 2024
1 parent 14cea3a commit 119360e
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions claripy/ast/bv.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,11 @@
import logging
import numbers
import weakref
from contextlib import suppress

from typing_extensions import Self

import claripy
from claripy import operations
from claripy.ast.base import _make_name
from claripy.errors import BackendError, ClaripyValueError
from claripy.errors import ClaripyValueError
from claripy.util import deprecated

from .bits import Bits
Expand Down Expand Up @@ -190,11 +187,6 @@ def raw_to_bv(self):
def to_bv(self):
return self.raw_to_bv()

def identical(self, other: Self, strict=False) -> bool:
with suppress(BackendError):
return claripy.backends.vsa.convert(self).identical(claripy.backends.vsa.convert(other))
return super().identical(other, strict)


def BVS( # pylint:disable=redefined-builtin
name,
Expand Down

0 comments on commit 119360e

Please sign in to comment.