-
Notifications
You must be signed in to change notification settings - Fork 17
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
EBMC/ic3 fails to verify property of ring_buffer
example
#20
Comments
We had a discussion about how to specify constraints a while ago. Rajdeep
said that the verilog 'assume' was not implemented yet. (However, I did
not hear that from Daniel.) So constraints for IC3 are currently specified
as a list of literals in a separate file. Maybe something has changed since
then or Rajdeep was wrong. Could you send me the entire verilog file?
Eugene
…On Sun, Jul 2, 2017 at 9:35 AM, Matthias Güdemann ***@***.***> wrote:
both --bdd and --k-induction verify the property. Maybe --ic3 does not
handle the assumes?
wire full=count==15;
wire empty=count==0;
assume property (empty |-> !read);
assume property (full |-> !write);
assert property (((writeptr-readptr)&'b1111)==count);
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#20>, or mute the thread
<https://github.com/notifications/unsubscribe-auth/AS5pCtV79kJNoZ4tU6BzLDOeNJS7Jv3Rks5sJ5y8gaJpZM4OLldY>
.
|
Hi Eugene,
please find it attached.
Best,
Matthias
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
both
--bdd
and--k-induction
verify the property. Maybe--ic3
does not handle theassume
s?The text was updated successfully, but these errors were encountered: