Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

goto-symex: apply_condition should not change L2 index #6993

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

tautschnig
Copy link
Collaborator

Updating the L2 index would result in additional phi assignments, which
can result in more costly verification. One such example is that the use
of i != size instead of i < size in loop conditions resulted
increased verification time when we would expect not-equal to be cheaper
than less-than.

  • Each commit message has a non-empty body, explaining why the change was made.
  • n/a Methods or procedures I have added are documented, following the guidelines provided in CODING_STANDARD.md.
  • n/a The feature or user visible behaviour I have added or modified has been documented in the User Guide in doc/cprover-manual/
  • Regression or unit tests are included, or existing tests cover the modified code (in this case I have detailed which ones those are in the commit message).
  • My commit message includes data points confirming performance improvements (if claimed).
  • My PR is restricted to a single feature or bugfix.
  • n/a White-space or formatting changes outside the feature-related changed lines are in commits of their own.

@codecov
Copy link

codecov bot commented Jul 5, 2022

Codecov Report

Attention: Patch coverage is 92.30769% with 4 lines in your changes are missing coverage. Please review.

Project coverage is 78.35%. Comparing base (1ed7b2f) to head (3e18c42).

Files Patch % Lines
src/goto-symex/goto_symex.cpp 83.33% 3 Missing ⚠️
src/goto-symex/goto_state.cpp 66.66% 1 Missing ⚠️
Additional details and impacted files
@@             Coverage Diff             @@
##           develop    #6993      +/-   ##
===========================================
- Coverage    78.38%   78.35%   -0.04%     
===========================================
  Files         1720     1720              
  Lines       187982   188084     +102     
  Branches     18474    18478       +4     
===========================================
+ Hits        147346   147366      +20     
- Misses       40636    40718      +82     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@tautschnig tautschnig force-pushed the cleanup/no-spurious-assignments branch from 92dc298 to ef831cd Compare August 12, 2022 07:52
@tautschnig tautschnig force-pushed the cleanup/no-spurious-assignments branch from ef831cd to 0531d37 Compare October 27, 2022 09:33
@tautschnig tautschnig force-pushed the cleanup/no-spurious-assignments branch from 0531d37 to e145161 Compare November 20, 2022 21:31
@tautschnig tautschnig force-pushed the cleanup/no-spurious-assignments branch from e145161 to 0534839 Compare December 1, 2022 23:46
@tautschnig tautschnig force-pushed the cleanup/no-spurious-assignments branch 2 times, most recently from 8f2d424 to 7a07e82 Compare February 23, 2023 10:59
@tautschnig tautschnig force-pushed the cleanup/no-spurious-assignments branch from 7a07e82 to 71feb01 Compare August 16, 2023 07:17
@tautschnig tautschnig force-pushed the cleanup/no-spurious-assignments branch from 71feb01 to 0db8c01 Compare January 22, 2024 15:10
@tautschnig tautschnig self-assigned this Jan 22, 2024
@tautschnig tautschnig force-pushed the cleanup/no-spurious-assignments branch from 0db8c01 to 183c3c1 Compare January 22, 2024 15:54
@tautschnig tautschnig removed their assignment Jan 22, 2024
Updating the L2 index would result in additional phi assignments, which
can result in more costly verification. One such example is that the use
of `i != size` instead of `i < size` in loop conditions resulted
increased verification time when we would expect not-equal to be cheaper
than less-than.
@tautschnig tautschnig force-pushed the cleanup/no-spurious-assignments branch from 183c3c1 to 3e18c42 Compare April 23, 2024 08:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants