Skip to content
This repository was archived by the owner on Apr 25, 2024. It is now read-only.

Commit 87a63cb

Browse files
committed
kcfg/explore: remove unused field KCFGExplore._trace_rewrites
1 parent 3b78039 commit 87a63cb

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/pyk/kcfg/explore.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ class KCFGExplore:
4646

4747
kcfg_semantics: KCFGSemantics
4848
id: str
49-
_trace_rewrites: bool
5049

5150
def __init__(
5251
self,
@@ -55,13 +54,11 @@ def __init__(
5554
*,
5655
kcfg_semantics: KCFGSemantics | None = None,
5756
id: str | None = None,
58-
trace_rewrites: bool = False,
5957
):
6058
self.kprint = kprint
6159
self.cterm_symbolic = cterm_symbolic
6260
self.kcfg_semantics = kcfg_semantics if kcfg_semantics is not None else DefaultSemantics()
6361
self.id = id if id is not None else 'NO ID'
64-
self._trace_rewrites = trace_rewrites
6562

6663
def implication_failure_reason(self, antecedent: CTerm, consequent: CTerm) -> tuple[bool, str]:
6764
def no_cell_rewrite_to_dots(term: KInner) -> KInner:

0 commit comments

Comments
 (0)