Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
olegranmo committed Oct 11, 2024
1 parent 47bf55b commit 5982f9b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tmu/lib/src/ClauseBank.c
Original file line number Diff line number Diff line change
Expand Up @@ -1585,6 +1585,17 @@ void cb_calculate_spatio_temporal_features(
}
printf("\n");

printf("+");
for (int k = 0; k < number_of_literals; ++k) {
int literal_chunk = k / 32;
int literal_pos = k % 32;

if (Xi[patch*number_of_ta_chunks + literal_chunk] & (1 << literal_pos)) {
printf(" %d", k);
}
}
printf("\n");

unsigned int patch_chunk = patch / 32;
unsigned int patch_pos = patch % 32;

Expand Down

0 comments on commit 5982f9b

Please sign in to comment.