Skip to content

Commit bcd05d8

Browse files
author
Daniel Kroening
committed
use satisfying_assignment() method
1 parent fcf83dc commit bcd05d8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/cbmc/bmc_cover.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ class bmc_covert:
8888

8989
bool operator()();
9090

91-
virtual void goal_covered(const cover_goalst::goalt &);
91+
// gets called by prop_covert
92+
virtual void satisfying_assignment();
9293

9394
struct goalt
9495
{
@@ -183,7 +184,7 @@ class bmc_covert:
183184

184185
/*******************************************************************\
185186
186-
Function: bmc_covert::goal_covered
187+
Function: bmc_covert::satisfying_assignment
187188
188189
Inputs:
189190
@@ -193,7 +194,7 @@ Function: bmc_covert::goal_covered
193194
194195
\*******************************************************************/
195196

196-
void bmc_covert::goal_covered(const cover_goalst::goalt &)
197+
void bmc_covert::satisfying_assignment()
197198
{
198199
for(auto &g_it : goal_map)
199200
{

0 commit comments

Comments
 (0)