Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
__pycache__
/build/
/dist/
/.svfpy-build-venv/
/*.egg-info/
6 changes: 4 additions & 2 deletions pysvf/pysvf.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -1972,8 +1972,10 @@ class AbstractState:
def bottom(self) -> None: ...
def getIDFromAddr(self, addr: int) -> int: ...
def top(self) -> None: ...
def isVirtualMemAddress(self, val: int) -> bool: ...
def getVirtualMemAddress(self, idx: int) -> int: ...
@staticmethod
def isVirtualMemAddress(val: int) -> bool: ...
@staticmethod
def getVirtualMemAddress(idx: int) -> int: ...
def isCmpBranchFeasible(self, cmp: 'CmpStmt', succ: int, abstract_state: AbstractState) -> bool: ...
def isSwitchBranchFeasible(self, switch_var: SVFVar, succ: int, abstract_state: AbstractState) -> bool: ...
def inVarToValTable(self, var_id: int) -> bool: ...
Expand Down
Loading