Skip to content

Commit

Permalink
rm unused vestigial variable
Browse files Browse the repository at this point in the history
The debugging print statements where this was used were
deleted in commit ddb82a9
  • Loading branch information
slivingston committed Aug 24, 2024
1 parent f9b3810 commit 5bee3ba
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/patching.c
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,6 @@ anode_t *patch_localfixpoint( DdManager *manager,
int num_read;
anode_t *strategy, *result_strategy;
anode_t *node, *head;
int node_counter;
vartype **N = NULL; /* "neighborhood" of states */
int N_len = 0;
int goal_mode;
Expand Down Expand Up @@ -948,7 +947,6 @@ anode_t *patch_localfixpoint( DdManager *manager,

/* Find nodes in strategy that are affected by this change */
head = strategy;
node_counter = 0;
while (head) {
for (i = 0; i < head->trans_len; i++) {
if (statecmp( state, (*(head->trans+i))->state+num_env,
Expand Down Expand Up @@ -980,7 +978,6 @@ anode_t *patch_localfixpoint( DdManager *manager,
}
}
head = head->next;
node_counter++;
}

vertex2 = state_to_BDD( manager, state,
Expand Down

0 comments on commit 5bee3ba

Please sign in to comment.