Skip to content

Commit

Permalink
update param type
Browse files Browse the repository at this point in the history
  • Loading branch information
RobRossmiller-TG committed May 28, 2024
1 parent 4b33c44 commit 2364925
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion GDBMS_ALGO/centrality/degree_cent.gsql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CREATE TEMPLATE QUERY GDBMS_ALGO.centrality.degree_cent(SET<STRING> v_type_set, SET<STRING> e_type_set, SET<STRING> reverse_e_type_set, BOOL in_degree = TRUE, BOOL out_degree = TRUE,
INT top_k=100, BOOL print_results = TRUE, STRING result_attribute = "",STRING file_path = "", normalize=TRUE) SYNTAX V1 {
INT top_k=100, BOOL print_results = TRUE, STRING result_attribute = "",STRING file_path = "", BOOL normalize = TRUE) SYNTAX V1 {
/*
First Author: <First Author Name>
First Commit Date: <First Commit Date>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CREATE QUERY tg_degree_cent(SET<STRING> v_type_set, SET<STRING> e_type_set, SET<STRING> reverse_e_type_set, BOOL in_degree = TRUE, BOOL out_degree = TRUE, INT top_k=100, BOOL print_results = TRUE, STRING result_attribute = "",STRING file_path = "", normalize=TRUE) SYNTAX V1 {
CREATE QUERY tg_degree_cent(SET<STRING> v_type_set, SET<STRING> e_type_set, SET<STRING> reverse_e_type_set, BOOL in_degree = TRUE, BOOL out_degree = TRUE, INT top_k=100, BOOL print_results = TRUE, STRING result_attribute = "",STRING file_path = "", BOOL normalize = TRUE) SYNTAX V1 {
/*
First Author: <First Author Name>
First Commit Date: <First Commit Date>
Expand Down
3 changes: 2 additions & 1 deletion tests/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ cd data
python3 create_baseline.py
cd ..
python test/setup.py &&
pytest
pytest test/test_centrality.py
# pytest

0 comments on commit 2364925

Please sign in to comment.