diff --git a/algorithms/Centrality/article_rank/tg_article_rank.gsql b/algorithms/Centrality/article_rank/tg_article_rank.gsql index f16c00c9..85a83bf6 100644 --- a/algorithms/Centrality/article_rank/tg_article_rank.gsql +++ b/algorithms/Centrality/article_rank/tg_article_rank.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_article_rank (STRING v_type, STRING e_type, +CREATE DISTRIBUTED QUERY tg_article_rank (STRING v_type, STRING e_type, FLOAT max_change = 0.001, INT maximum_iteration = 25, FLOAT damping = 0.85, INT top_k = 100, BOOL print_results = TRUE, STRING result_attribute = "", STRING file_path = "") SYNTAX V1 { diff --git a/algorithms/Centrality/closeness/approximate/tg_closeness_cent_approx.gsql b/algorithms/Centrality/closeness/approximate/tg_closeness_cent_approx.gsql index 1e2fef63..52dee2df 100644 --- a/algorithms/Centrality/closeness/approximate/tg_closeness_cent_approx.gsql +++ b/algorithms/Centrality/closeness/approximate/tg_closeness_cent_approx.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_closeness_cent_approx ( +CREATE DISTRIBUTED QUERY tg_closeness_cent_approx ( SET v_type_set, SET e_type_set, STRING reverse_e_type, INT top_k=100, INT k = 100, INT max_hops = 10, DOUBLE epsilon = 0.1, BOOL print_results = true, STRING file_path = "", INT debug = 0, INT sample_index = 0, INT max_size = 1000, BOOL wf = True ) SYNTAX V1 { diff --git a/algorithms/Centrality/degree/unweighted/tg_degree_cent.gsql b/algorithms/Centrality/degree/unweighted/tg_degree_cent.gsql index e3efb225..e2cf2559 100644 --- a/algorithms/Centrality/degree/unweighted/tg_degree_cent.gsql +++ b/algorithms/Centrality/degree/unweighted/tg_degree_cent.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_degree_cent(SET v_type_set, SET e_type_set, SET reverse_e_type_set, BOOL in_degree = TRUE, BOOL out_degree = TRUE, +CREATE DISTRIBUTED QUERY tg_degree_cent(SET v_type_set, SET e_type_set, SET 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 = "") SYNTAX V1 { /* diff --git a/algorithms/Centrality/degree/weighted/tg_weighted_degree_cent.gsql b/algorithms/Centrality/degree/weighted/tg_weighted_degree_cent.gsql index a284380b..c7593574 100644 --- a/algorithms/Centrality/degree/weighted/tg_weighted_degree_cent.gsql +++ b/algorithms/Centrality/degree/weighted/tg_weighted_degree_cent.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_weighted_degree_cent(STRING v_type, STRING e_type, STRING reverse_e_type, string weight_attribute, BOOL in_degree = TRUE, BOOL out_degree = TRUE, INT top_k=100, BOOL print_results = TRUE, STRING result_attribute = "",STRING file_path = "") SYNTAX V1 { +CREATE DISTRIBUTED QUERY tg_weighted_degree_cent(STRING v_type, STRING e_type, STRING reverse_e_type, string weight_attribute, BOOL in_degree = TRUE, BOOL out_degree = TRUE, INT top_k=100, BOOL print_results = TRUE, STRING result_attribute = "",STRING file_path = "") SYNTAX V1 { /* First Author: diff --git a/algorithms/Centrality/eigenvector/tg_eigenvector_cent.gsql b/algorithms/Centrality/eigenvector/tg_eigenvector_cent.gsql index e3af4744..e98ca65e 100644 --- a/algorithms/Centrality/eigenvector/tg_eigenvector_cent.gsql +++ b/algorithms/Centrality/eigenvector/tg_eigenvector_cent.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_eigenvector_cent(SET v_type_set, SET e_type_set, INT maximum_iteration = 100, FLOAT conv_limit = 0.000001, +CREATE DISTRIBUTED QUERY tg_eigenvector_cent(SET v_type_set, SET e_type_set, INT maximum_iteration = 100, FLOAT conv_limit = 0.000001, INT top_k = 100, BOOL print_results = True, STRING result_attribute = "",STRING file_path = "" ) SYNTAX V1 { diff --git a/algorithms/Centrality/harmonic/tg_harmonic_cent.gsql b/algorithms/Centrality/harmonic/tg_harmonic_cent.gsql index a981d972..13b70b6a 100644 --- a/algorithms/Centrality/harmonic/tg_harmonic_cent.gsql +++ b/algorithms/Centrality/harmonic/tg_harmonic_cent.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_harmonic_cent(SET v_type_set, SET e_type_set, SET reverse_e_type_set,INT max_hops = 10, +CREATE DISTRIBUTED QUERY tg_harmonic_cent(SET v_type_set, SET e_type_set, SET reverse_e_type_set,INT max_hops = 10, INT top_k = 100, BOOL wf = TRUE, BOOL print_results = True, STRING result_attribute = "", STRING file_path = "", BOOL display_edges = FALSE) SYNTAX V1 { diff --git a/algorithms/Centrality/influence_maximization/CELF/tg_influence_maximization_CELF.gsql b/algorithms/Centrality/influence_maximization/CELF/tg_influence_maximization_CELF.gsql index 48440f9b..080b81f3 100644 --- a/algorithms/Centrality/influence_maximization/CELF/tg_influence_maximization_CELF.gsql +++ b/algorithms/Centrality/influence_maximization/CELF/tg_influence_maximization_CELF.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_influence_maximization_CELF(STRING v_type,STRING e_type,STRING weight_attribute,INT top_k, +CREATE DISTRIBUTED QUERY tg_influence_maximization_CELF(STRING v_type,STRING e_type,STRING weight_attribute,INT top_k, BOOL print_results = True, STRING file_path = "") SYNTAX V1 { /* @@ -128,4 +128,4 @@ CREATE QUERY tg_influence_maximization_CELF(STRING v_type,STRING e_type,STRING w IF print_results THEN PRINT @@res_list; END; -} \ No newline at end of file +} diff --git a/algorithms/Centrality/influence_maximization/greedy/tg_influence_maximization_greedy.gsql b/algorithms/Centrality/influence_maximization/greedy/tg_influence_maximization_greedy.gsql index 3731a287..5c1f928e 100644 --- a/algorithms/Centrality/influence_maximization/greedy/tg_influence_maximization_greedy.gsql +++ b/algorithms/Centrality/influence_maximization/greedy/tg_influence_maximization_greedy.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_influence_maximization_greedy(STRING v_type,STRING e_type,STRING weight_attribute,INT top_k, +CREATE DISTRIBUTED QUERY tg_influence_maximization_greedy(STRING v_type,STRING e_type,STRING weight_attribute,INT top_k, BOOL print_results = True, STRING file_path = "") SYNTAX V1 { /* diff --git a/algorithms/Centrality/pagerank/global/unweighted/tg_pagerank.gsql b/algorithms/Centrality/pagerank/global/unweighted/tg_pagerank.gsql index a00155bd..8f6e93fd 100644 --- a/algorithms/Centrality/pagerank/global/unweighted/tg_pagerank.gsql +++ b/algorithms/Centrality/pagerank/global/unweighted/tg_pagerank.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_pagerank (STRING v_type, STRING e_type, +CREATE DISTRIBUTED QUERY tg_pagerank (STRING v_type, STRING e_type, FLOAT max_change=0.001, INT maximum_iteration=25, FLOAT damping=0.85, INT top_k = 100, BOOL print_results = TRUE, STRING result_attribute = "", STRING file_path = "", BOOL display_edges = FALSE) SYNTAX V1 { diff --git a/algorithms/Centrality/pagerank/global/weighted/tg_pagerank_wt.gsql b/algorithms/Centrality/pagerank/global/weighted/tg_pagerank_wt.gsql index 2d824e1e..7726d8a0 100644 --- a/algorithms/Centrality/pagerank/global/weighted/tg_pagerank_wt.gsql +++ b/algorithms/Centrality/pagerank/global/weighted/tg_pagerank_wt.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_pagerank_wt (STRING v_type, STRING e_type, STRING weight_attribute, +CREATE DISTRIBUTED QUERY tg_pagerank_wt (STRING v_type, STRING e_type, STRING weight_attribute, FLOAT max_change=0.001, INT maximum_iteration=25, FLOAT damping=0.85, INT top_k = 100, BOOL print_results = TRUE, STRING result_attribute = "", STRING file_path = "", BOOL display_edges = FALSE) SYNTAX V1 { diff --git a/algorithms/Centrality/pagerank/personalized/all_pairs/tg_pagerank_pers_ap_batch.gsql b/algorithms/Centrality/pagerank/personalized/all_pairs/tg_pagerank_pers_ap_batch.gsql index e770576d..8ddb6ec1 100644 --- a/algorithms/Centrality/pagerank/personalized/all_pairs/tg_pagerank_pers_ap_batch.gsql +++ b/algorithms/Centrality/pagerank/personalized/all_pairs/tg_pagerank_pers_ap_batch.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_pagerank_pers_ap_batch(STRING v_type, STRING e_type, +CREATE DISTRIBUTED QUERY tg_pagerank_pers_ap_batch(STRING v_type, STRING e_type, FLOAT max_change=0.001, INT maximum_iteration=25, FLOAT damping = 0.85, INT top_k = 100,INT batch_num,BOOL print_results,STRING file_path) SYNTAX V1 { /* diff --git a/algorithms/Centrality/pagerank/personalized/multi_source/tg_pagerank_pers.gsql b/algorithms/Centrality/pagerank/personalized/multi_source/tg_pagerank_pers.gsql index cc3934a5..a8f1f873 100644 --- a/algorithms/Centrality/pagerank/personalized/multi_source/tg_pagerank_pers.gsql +++ b/algorithms/Centrality/pagerank/personalized/multi_source/tg_pagerank_pers.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_pagerank_pers(SET source, STRING e_type, +CREATE DISTRIBUTED QUERY tg_pagerank_pers(SET source, STRING e_type, FLOAT max_change=0.001, INT maximum_iteration=25, FLOAT damping = 0.85, INT top_k = 100, BOOL print_results = TRUE, STRING result_attribute = "", STRING file_path = "") SYNTAX V1 { diff --git a/algorithms/Classification/greedy_graph_coloring/tg_greedy_graph_coloring.gsql b/algorithms/Classification/greedy_graph_coloring/tg_greedy_graph_coloring.gsql index d7c4eaaa..365cb02b 100644 --- a/algorithms/Classification/greedy_graph_coloring/tg_greedy_graph_coloring.gsql +++ b/algorithms/Classification/greedy_graph_coloring/tg_greedy_graph_coloring.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_greedy_graph_coloring(SET v_type_set,SET e_type_set,UINT max_colors = 999999, +CREATE DISTRIBUTED QUERY tg_greedy_graph_coloring(SET v_type_set,SET e_type_set,UINT max_colors = 999999, BOOL print_color_count = TRUE, BOOL print_stats = TRUE, STRING file_path = "") SYNTAX V1 { /* diff --git a/algorithms/Classification/k_nearest_neighbors/single_source/tg_knn_cosine_ss.gsql b/algorithms/Classification/k_nearest_neighbors/single_source/tg_knn_cosine_ss.gsql index e7ed3eae..f127721a 100644 --- a/algorithms/Classification/k_nearest_neighbors/single_source/tg_knn_cosine_ss.gsql +++ b/algorithms/Classification/k_nearest_neighbors/single_source/tg_knn_cosine_ss.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_knn_cosine_ss (VERTEX source, SET v_type_set, SET e_type_set, SET reverse_e_type_set, STRING weight_attribute, +CREATE DISTRIBUTED QUERY tg_knn_cosine_ss (VERTEX source, SET v_type_set, SET e_type_set, SET reverse_e_type_set, STRING weight_attribute, STRING label, INT top_k, BOOL print_results = TRUE, STRING file_path = "", STRING result_attribute = "") RETURNS (STRING) SYNTAX V1 { /* diff --git a/algorithms/Classification/maximal_independent_set/deterministic/tg_maximal_indep_set.gsql b/algorithms/Classification/maximal_independent_set/deterministic/tg_maximal_indep_set.gsql index aee9a0f7..5ff61956 100644 --- a/algorithms/Classification/maximal_independent_set/deterministic/tg_maximal_indep_set.gsql +++ b/algorithms/Classification/maximal_independent_set/deterministic/tg_maximal_indep_set.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_maximal_indep_set(STRING v_type, STRING e_type, INT maximum_iteration = 100, BOOL print_results = TRUE, STRING file_path = "") SYNTAX V1 { +CREATE DISTRIBUTED QUERY tg_maximal_indep_set(STRING v_type, STRING e_type, INT maximum_iteration = 100, BOOL print_results = TRUE, STRING file_path = "") SYNTAX V1 { /* First Author: diff --git a/algorithms/Community/connected_components/strongly_connected_components/standard/tg_scc.gsql b/algorithms/Community/connected_components/strongly_connected_components/standard/tg_scc.gsql index 52559faa..31e22dba 100644 --- a/algorithms/Community/connected_components/strongly_connected_components/standard/tg_scc.gsql +++ b/algorithms/Community/connected_components/strongly_connected_components/standard/tg_scc.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_scc (SET v_type_set, SET e_type_set, SET reverse_e_type_set, +CREATE DISTRIBUTED QUERY tg_scc (SET v_type_set, SET e_type_set, SET reverse_e_type_set, INT top_k_dist, INT print_limit, INT maximum_iteration = 500, INT iter_wcc = 5, BOOL print_results = TRUE, STRING result_attribute= "", STRING file_path="") SYNTAX V1 { //INT iter_end_trim = 3 diff --git a/algorithms/Community/connected_components/weakly_connected_components/standard/tg_wcc.gsql b/algorithms/Community/connected_components/weakly_connected_components/standard/tg_wcc.gsql index 94046cd7..3227a681 100644 --- a/algorithms/Community/connected_components/weakly_connected_components/standard/tg_wcc.gsql +++ b/algorithms/Community/connected_components/weakly_connected_components/standard/tg_wcc.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_wcc (SET v_type_set, SET e_type_set, INT print_limit = 100, +CREATE DISTRIBUTED QUERY tg_wcc (SET v_type_set, SET e_type_set, INT print_limit = 100, BOOL print_results = TRUE, STRING result_attribute = "", STRING file_path = "") SYNTAX V1 { /* diff --git a/algorithms/Community/k_core/tg_kcore.gsql b/algorithms/Community/k_core/tg_kcore.gsql index 6dedde91..dc218741 100644 --- a/algorithms/Community/k_core/tg_kcore.gsql +++ b/algorithms/Community/k_core/tg_kcore.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_kcore(STRING v_type, STRING e_type, INT k_min = 0, INT k_max = -1, BOOL print_results = TRUE, +CREATE DISTRIBUTED QUERY tg_kcore(STRING v_type, STRING e_type, INT k_min = 0, INT k_max = -1, BOOL print_results = TRUE, STRING result_attribute = "", STRING file_path = "", BOOL print_all_k = FALSE, BOOL show_shells=FALSE) SYNTAX V1 { /* diff --git a/algorithms/Community/label_propagation/tg_label_prop.gsql b/algorithms/Community/label_propagation/tg_label_prop.gsql index dd410b44..9a6329dd 100644 --- a/algorithms/Community/label_propagation/tg_label_prop.gsql +++ b/algorithms/Community/label_propagation/tg_label_prop.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_label_prop (SET v_type_set, SET e_type_set, INT maximum_iteration, INT print_limit, +CREATE DISTRIBUTED QUERY tg_label_prop (SET v_type_set, SET e_type_set, INT maximum_iteration, INT print_limit, BOOL print_results = TRUE, STRING file_path = "", STRING result_attribute = "") SYNTAX V1 { diff --git a/algorithms/Community/local_clustering_coefficient/tg_lcc.gsql b/algorithms/Community/local_clustering_coefficient/tg_lcc.gsql index ce100160..caba83fc 100644 --- a/algorithms/Community/local_clustering_coefficient/tg_lcc.gsql +++ b/algorithms/Community/local_clustering_coefficient/tg_lcc.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_lcc (STRING v_type, STRING e_type,INT top_k=100,BOOL print_results = True, STRING result_attribute = "", +CREATE DISTRIBUTED QUERY tg_lcc (STRING v_type, STRING e_type,INT top_k=100,BOOL print_results = True, STRING result_attribute = "", STRING file_path = "", BOOL display_edges = FALSE) SYNTAX V1 { /* diff --git a/algorithms/Community/louvain/tg_louvain.gsql b/algorithms/Community/louvain/tg_louvain.gsql index c39a12c2..433f5028 100644 --- a/algorithms/Community/louvain/tg_louvain.gsql +++ b/algorithms/Community/louvain/tg_louvain.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_louvain(SET v_type_set, SET e_type_set, STRING weight_attribute = "weight", INT maximum_iteration = 10, +CREATE DISTRIBUTED QUERY tg_louvain(SET v_type_set, SET e_type_set, STRING weight_attribute = "weight", INT maximum_iteration = 10, STRING result_attribute = "cid", STRING file_path = "", BOOL print_stats = FALSE) SYNTAX V1 { /* diff --git a/algorithms/Community/speaker-listener_label_propagation/tg_slpa.gsql b/algorithms/Community/speaker-listener_label_propagation/tg_slpa.gsql index 2b0d571d..47857626 100644 --- a/algorithms/Community/speaker-listener_label_propagation/tg_slpa.gsql +++ b/algorithms/Community/speaker-listener_label_propagation/tg_slpa.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_slpa (SET v_type_set, SET e_type_set, FLOAT threshold, INT maximum_iteration, INT print_limit, +CREATE DISTRIBUTED QUERY tg_slpa (SET v_type_set, SET e_type_set, FLOAT threshold, INT maximum_iteration, INT print_limit, BOOL print_results = TRUE, STRING file_path = "") SYNTAX V1 { /* diff --git a/algorithms/Path/bfs/tg_bfs.gsql b/algorithms/Path/bfs/tg_bfs.gsql index 3c90b2de..b4b65e17 100644 --- a/algorithms/Path/bfs/tg_bfs.gsql +++ b/algorithms/Path/bfs/tg_bfs.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_bfs(SET v_type_set, SET e_type_set,INT max_hops=10, VERTEX v_start, +CREATE DISTRIBUTED QUERY tg_bfs(SET v_type_set, SET e_type_set,INT max_hops=10, VERTEX v_start, BOOL print_results = True, STRING result_attribute = "",STRING file_path = "", BOOL display_edges = TRUE) SYNTAX V1 { /* diff --git a/algorithms/Path/cycle_component/tg_cycle_component.gsql b/algorithms/Path/cycle_component/tg_cycle_component.gsql index ad235cb6..75c3be79 100644 --- a/algorithms/Path/cycle_component/tg_cycle_component.gsql +++ b/algorithms/Path/cycle_component/tg_cycle_component.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_cycle_component(STRING v_type,STRING e_type,BOOL print_results = TRUE, STRING result_attribute = "", STRING file_path = "") SYNTAX v1{ +CREATE DISTRIBUTED QUERY tg_cycle_component(STRING v_type,STRING e_type,BOOL print_results = TRUE, STRING result_attribute = "", STRING file_path = "") SYNTAX v1{ /* diff --git a/algorithms/Path/minimum_spanning_forest/tg_msf.gsql b/algorithms/Path/minimum_spanning_forest/tg_msf.gsql index 2263fe72..e93d03b9 100644 --- a/algorithms/Path/minimum_spanning_forest/tg_msf.gsql +++ b/algorithms/Path/minimum_spanning_forest/tg_msf.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_msf (SET v_type_set, SET e_type_set, STRING weight_attribute, STRING weight_type, +CREATE DISTRIBUTED QUERY tg_msf (SET v_type_set, SET e_type_set, STRING weight_attribute, STRING weight_type, BOOL print_results = TRUE, STRING result_attribute = "", STRING file_path = "") SYNTAX V1 { /* diff --git a/algorithms/Path/minimum_spanning_tree/tg_mst.gsql b/algorithms/Path/minimum_spanning_tree/tg_mst.gsql index 4eb05609..78922fae 100644 --- a/algorithms/Path/minimum_spanning_tree/tg_mst.gsql +++ b/algorithms/Path/minimum_spanning_tree/tg_mst.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_mst(VERTEX opt_source, SET v_type_set, SET e_type_set, STRING weight_attribute, STRING weight_type, +CREATE DISTRIBUTED QUERY tg_mst(VERTEX opt_source, SET v_type_set, SET e_type_set, STRING weight_attribute, STRING weight_type, INT maximum_iteration = -1, BOOL print_results = TRUE, STRING result_attribute = "", STRING file_path = "") SYNTAX V1 { /* diff --git a/algorithms/Path/path_between_two_vertices/one_direction/tg_all_path.gsql b/algorithms/Path/path_between_two_vertices/one_direction/tg_all_path.gsql index 59b33728..e5202455 100644 --- a/algorithms/Path/path_between_two_vertices/one_direction/tg_all_path.gsql +++ b/algorithms/Path/path_between_two_vertices/one_direction/tg_all_path.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_all_path(VERTEX v_source, VERTEX target_v, INT depth = 10, +CREATE DISTRIBUTED QUERY tg_all_path(VERTEX v_source, VERTEX target_v, INT depth = 10, BOOL print_results = TRUE, STRING file_path = "")SYNTAX v1 { /* diff --git a/algorithms/Path/shortest_path/unweighted/tg_shortest_ss_no_wt.gsql b/algorithms/Path/shortest_path/unweighted/tg_shortest_ss_no_wt.gsql index f8903e51..a4f8d04c 100644 --- a/algorithms/Path/shortest_path/unweighted/tg_shortest_ss_no_wt.gsql +++ b/algorithms/Path/shortest_path/unweighted/tg_shortest_ss_no_wt.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_shortest_ss_no_wt (VERTEX source, SET v_type_set, SET e_type_set, +CREATE DISTRIBUTED QUERY tg_shortest_ss_no_wt (VERTEX source, SET v_type_set, SET e_type_set, INT print_limit = -1, BOOL print_results =TRUE, STRING result_attribute ="", STRING file_path ="", BOOL display_edges =FALSE) SYNTAX V1 { diff --git a/algorithms/Path/shortest_path/weighted/any_sign/tg_shortest_ss_any_wt.gsql b/algorithms/Path/shortest_path/weighted/any_sign/tg_shortest_ss_any_wt.gsql index a27f93d6..f430325f 100644 --- a/algorithms/Path/shortest_path/weighted/any_sign/tg_shortest_ss_any_wt.gsql +++ b/algorithms/Path/shortest_path/weighted/any_sign/tg_shortest_ss_any_wt.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_shortest_ss_any_wt (VERTEX source, SET v_type_set, SET e_type_set, +CREATE DISTRIBUTED QUERY tg_shortest_ss_any_wt (VERTEX source, SET v_type_set, SET e_type_set, STRING weight_attribute, STRING weight_type, INT print_limit = -1, BOOL print_results = TRUE, STRING result_attribute = "", STRING file_path = "", BOOL display_edges = FALSE) SYNTAX V1 { diff --git a/algorithms/Path/shortest_path/weighted/positive/summary/tg_shortest_ss_pos_wt.gsql b/algorithms/Path/shortest_path/weighted/positive/summary/tg_shortest_ss_pos_wt.gsql index 665502da..db30f2d6 100644 --- a/algorithms/Path/shortest_path/weighted/positive/summary/tg_shortest_ss_pos_wt.gsql +++ b/algorithms/Path/shortest_path/weighted/positive/summary/tg_shortest_ss_pos_wt.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_shortest_ss_pos_wt (VERTEX source, SET v_type_set, SET e_type_set, +CREATE DISTRIBUTED QUERY tg_shortest_ss_pos_wt (VERTEX source, SET v_type_set, SET e_type_set, STRING weight_attribute, STRING weight_type, FLOAT epsilon = 0.001,BOOL print_results = TRUE, INT print_limit = -1, BOOL display_edges = FALSE, STRING result_attribute = "", STRING file_path = "") SYNTAX V1 { diff --git a/algorithms/Path/shortest_path/weighted/positive/traceback/tg_shortest_ss_pos_wt_tb.gsql b/algorithms/Path/shortest_path/weighted/positive/traceback/tg_shortest_ss_pos_wt_tb.gsql index a89d48cb..5079d063 100644 --- a/algorithms/Path/shortest_path/weighted/positive/traceback/tg_shortest_ss_pos_wt_tb.gsql +++ b/algorithms/Path/shortest_path/weighted/positive/traceback/tg_shortest_ss_pos_wt_tb.gsql @@ -1,4 +1,4 @@ -CREATE QUERY tg_shortest_ss_pos_wt_tb (VERTEX source, SET v_type_set, SET e_type_set, +CREATE DISTRIBUTED QUERY tg_shortest_ss_pos_wt_tb (VERTEX source, SET v_type_set, SET e_type_set, STRING weight_attribute, STRING weight_type, FLOAT epsilon = 0.001,BOOL print_results = TRUE, INT print_limit = -1, BOOL display_edges = FALSE, STRING result_attribute = "", STRING file_path = "", UINT write_size = 10000) SYNTAX V1 {