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
6 changes: 1 addition & 5 deletions src/ebmc/k_induction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ Function: k_induction

property_checker_resultt k_induction(
const cmdlinet &cmdline,
transition_systemt &transition_system,
const transition_systemt &transition_system,
ebmc_propertiest &properties,
message_handlert &message_handler)
{
Expand All @@ -158,10 +158,6 @@ property_checker_resultt k_induction(
if(properties.properties.empty())
throw ebmc_errort() << "no properties";

// liveness to safety translation, if requested
if(cmdline.isset("liveness-to-safety"))
liveness_to_safety(transition_system, properties);

// Are there any properties suitable for k-induction?
// Fail early if not.
if(!k_inductiont::have_supported_property(properties.properties))
Expand Down
2 changes: 1 addition & 1 deletion src/ebmc/k_induction.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ebmc_propertiest;

[[nodiscard]] property_checker_resultt k_induction(
const cmdlinet &,
transition_systemt &,
const transition_systemt &,
ebmc_propertiest &,
message_handlert &);

Expand Down
Loading