Skip to content

Commit

Permalink
Small fix to set the correct source node for sssp shared lib test.
Browse files Browse the repository at this point in the history
  • Loading branch information
yzhwang committed Sep 13, 2016
1 parent daa4246 commit 4c31784
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared_lib_tests/shared_lib_sssp.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ int main(int argc, char* argv[])
data_t.VTXID_TYPE = VTXID_INT; // vertex identifier
data_t.SIZET_TYPE = SIZET_INT; // graph size type
data_t.VALUE_TYPE = VALUE_INT; // attributes type
int srcs[1] = {1};
int srcs[1] = {0};

struct GRSetup *config = InitSetup(1, srcs); // gunrock configurations

Expand Down

0 comments on commit 4c31784

Please sign in to comment.