SymbRunResult Type
Represents the answer to a bounded symbolic execution query.
Union cases
| Union case |
Description
|
|
One or more states reached the requested target.
|
Full Usage:
Satisfiable SymbSatisfiabilityAnswer list
Parameters:
SymbSatisfiabilityAnswer list
|
One or more concrete assignments satisfy the requested target.
|
|
Execution timed out and produced the given partial result.
|
|
Execution could not prove satisfiability or unsatisfiability.
|
Full Usage:
Unreachable
|
No state reached the requested target in the explored state space. |
Full Usage:
Unsatisfiable
|
No concrete assignment satisfies the requested target. |
Instance members
| Instance member |
Description
|
|
Returns the first satisfiability answer, or raises when unavailable.
|
Full Usage:
this.IsReachable
Returns: bool
|
|
Full Usage:
this.IsSatisfiable
Returns: bool
|
|
Full Usage:
this.IsTimedOut
Returns: bool
|
|
Full Usage:
this.IsUnknown
Returns: bool
|
|
Full Usage:
this.IsUnreachable
Returns: bool
|
|
Full Usage:
this.IsUnsatisfiable
Returns: bool
|
|
B2R2