Skip to content

Commit

Permalink
execute_summary() improvement so it's more general
Browse files Browse the repository at this point in the history
  • Loading branch information
Derek Sorensen authored and Derek Sorensen committed Dec 19, 2024
1 parent 00349d6 commit f2f39c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions certora/specs/v1.5/Execute.spec
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ methods {
persistent ghost bool execute_called { init_state axiom execute_called == false; }

function execute_summary() returns bool {
execute_called = true ;

return true ;
execute_called = true ;
bool new_var ;
return new_var ;
}

// ---- Invariants -------------------------------------------------------------
Expand Down

0 comments on commit f2f39c5

Please sign in to comment.