Skip to content

Commit

Permalink
Run direct now just runs once
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbert van Renesse committed Jun 2, 2024
1 parent dea3a75 commit 24f6a54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions harmony_model_checker/charm/charm.c
Original file line number Diff line number Diff line change
Expand Up @@ -3860,8 +3860,8 @@ int exec_model_checker(int argc, char **argv){

struct state *sc = calloc(1, sizeof(struct state) +
256 * (sizeof(hvalue_t) + 1));
for (unsigned int i = 0; i < 10000; i++) {
if (i % 100 == 0) {
for (unsigned int i = 0; i < 1; i++) {
if (i > 0 && i % 100 == 0) {
printf("TIME %d\n", i);
}
memcpy(sc, state, state_size(state));
Expand Down

0 comments on commit 24f6a54

Please sign in to comment.