We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
KProve
1 parent dbf9704 commit 63b82b0Copy full SHA for 63b82b0
pyk/src/pyk/ktool/kprove.py
@@ -30,7 +30,6 @@
30
31
from ..kast.outer import KClaim, KRule, KRuleLike
32
from ..kast.pretty import SymbolTable
33
- from ..kcfg import KCFGExplore
34
from ..utils import BugReport
35
36
_LOGGER: Final = logging.getLogger(__name__)
@@ -160,7 +159,6 @@ class KProve(KPrint):
160
159
main_file: Path | None
161
prover: list[str]
162
prover_args: list[str]
163
- _kcfg_explore: KCFGExplore | None
164
165
def __init__(
166
self,
@@ -183,7 +181,6 @@ def __init__(
183
181
self.main_file = main_file
184
182
self.prover = [command]
185
self.prover_args = []
186
- self._kcfg_explore = None
187
188
def prove(
189
0 commit comments