diff --git a/verified-node-replication/src/lib.rs b/verified-node-replication/src/lib.rs index 14afe32..3e75dc1 100644 --- a/verified-node-replication/src/lib.rs +++ b/verified-node-replication/src/lib.rs @@ -394,7 +394,7 @@ pub open spec fn add_ticket( ) -> bool { !pre.local_reads.dom().contains(rid) && !pre.local_updates.dom().contains(rid) && (match input { InputOperation::Read(read_op) => { - &&post == UnboundedLog::State::
{ + post == UnboundedLog::State::
{ local_reads: pre.local_reads.insert( rid, crate::spec::unbounded_log::ReadonlyState::Init { op: read_op }, @@ -403,7 +403,7 @@ pub open spec fn add_ticket( } }, InputOperation::Write(write_op) => { - &&post == UnboundedLog::State::
{ + post == UnboundedLog::State::
{ local_updates: pre.local_updates.insert( rid, crate::spec::unbounded_log::UpdateState::Init { op: write_op },