We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 99e8ac7 + a5bf0d6 commit d152d98Copy full SHA for d152d98
src/goto-symex/partial_order_concurrency.cpp
@@ -153,6 +153,19 @@ void partial_order_concurrencyt::build_event_lists(
153
numbering[e_it]=cnt;
154
}
155
156
+
157
+ for(address_mapt::const_iterator
158
+ a_it=address_map.begin();
159
+ a_it!=address_map.end();
160
+ a_it++)
161
+ {
162
+ const a_rect &a_rec=a_it->second;
163
+ if(a_rec.reads.empty()) continue;
164
165
+ statistics() << "Shared " << a_it->first << ": "
166
+ << a_rec.reads.size() << "R/"
167
+ << a_rec.writes.size() << "W" << eom;
168
+ }
169
170
171
/*******************************************************************\
0 commit comments