-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #940 from diffblue/k-induction-property-checker-re…
…sult `k_induction(...)` now returns `property_checker_resultt`
- Loading branch information
Showing
3 changed files
with
17 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,17 +18,17 @@ Author: Daniel Kroening, [email protected] | |
class transition_systemt; | ||
class ebmc_propertiest; | ||
|
||
property_checker_resultt k_induction( | ||
[[nodiscard]] property_checker_resultt k_induction( | ||
const cmdlinet &, | ||
transition_systemt &, | ||
ebmc_propertiest &, | ||
message_handlert &); | ||
|
||
// Basic k-induction. The result is stored in the ebmc_propertiest argument. | ||
void k_induction( | ||
// Basic k-induction, for given k and given solver. | ||
[[nodiscard]] property_checker_resultt k_induction( | ||
std::size_t k, | ||
const transition_systemt &, | ||
ebmc_propertiest &, | ||
const ebmc_propertiest &, | ||
const ebmc_solver_factoryt &, | ||
message_handlert &); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters