projects
/
cdsspec-compiler.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
75ebee4
)
model: remove useless special case
author
Brian Norris
<banorris@uci.edu>
Thu, 15 Nov 2012 00:30:39 +0000
(16:30 -0800)
committer
Brian Norris
<banorris@uci.edu>
Thu, 15 Nov 2012 00:30:39 +0000
(16:30 -0800)
Why do we want to print races, etc., when exiting due to execution
length bound? If you want that, just enable debug prints.
model.cc
patch
|
blob
|
history
diff --git
a/model.cc
b/model.cc
index 3f200ed8e1afd2e7aff81d7b0a23ae6f0cbb7a19..922a0d60e6daf360360c83852f70ee7e47f3cf4f 100644
(file)
--- a/
model.cc
+++ b/
model.cc
@@
-306,7
+306,7
@@
bool ModelChecker::next_execution()
pending_rel_seqs->size());
- if (isfinalfeasible() ||
(params.bound != 0 && priv->used_sequence_numbers > params.bound ) || DBG_ENABLED()
) {
+ if (isfinalfeasible() ||
DBG_ENABLED()
) {
checkDataRaces();
print_summary();
}