File tree Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change 3
3
import logging
4
4
import numbers
5
5
import weakref
6
- from contextlib import suppress
7
-
8
- from typing_extensions import Self
9
6
10
7
import claripy
11
8
from claripy import operations
12
9
from claripy .ast .base import _make_name
13
- from claripy .errors import BackendError , ClaripyValueError
10
+ from claripy .errors import ClaripyValueError
14
11
from claripy .util import deprecated
15
12
16
13
from .bits import Bits
@@ -190,11 +187,6 @@ def raw_to_bv(self):
190
187
def to_bv (self ):
191
188
return self .raw_to_bv ()
192
189
193
- def identical (self , other : Self , strict = False ) -> bool :
194
- with suppress (BackendError ):
195
- return claripy .backends .vsa .convert (self ).identical (claripy .backends .vsa .convert (other ))
196
- return super ().identical (other , strict )
197
-
198
190
199
191
def BVS ( # pylint:disable=redefined-builtin
200
192
name ,
You can’t perform that action at this time.
0 commit comments