Skip to content

Commit

Permalink
use improved data structure PerfectShadow_2
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasrothenberger committed Jul 8, 2024
1 parent 25ba673 commit 338ffe5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtlib/runtimeFunctions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ void *analyzeDeps(void *arg) {
int64_t id = (int64_t)arg;
AbstractShadow *SMem;
if (USE_PERFECT) {
SMem = new PerfectShadow(SIG_ELEM_BIT, SIG_NUM_ELEM, SIG_NUM_HASH);
SMem = new PerfectShadow2();
} else {
SMem = new ShadowMemory(SIG_ELEM_BIT, SIG_NUM_ELEM, SIG_NUM_HASH);
}
Expand Down

0 comments on commit 338ffe5

Please sign in to comment.