Skip to content
Snippets Groups Projects

Added abstracts to json, negative tests and bug fixes

Merged Schokolowski, Malte requested to merge bav1758/ci-s-projekt-verarbeitung:main into main
Files
9
@@ -46,7 +46,7 @@ def get_cit_type_list(pub, cit_type):
:param cit_type: variable to differenciate citation and reference call
:type cit_type: String
function to create nodes and edges and call create_graph_structure_citations
function to return citation or reference list for given pub
'''
if cit_type == "Citation":
return(pub.citations)
@@ -164,12 +164,16 @@ def process_citations_rec(citations_pub_obj_list, search_depth, search_depth_max
'''
# adds next level to nodes/edges
new_citation_pub_obj_save_list = []
for pub in citations_pub_obj_list:
new_citation_pub_obj_list = create_graph_structure_citations(pub, search_depth, search_depth_max, cit_type, test_var)
new_citation_pub_obj_list = create_graph_structure_citations(pub, search_depth, search_depth_max, cit_type, test_var)
if len(new_citation_pub_obj_list) > 0:
new_citation_pub_obj_save_list += new_citation_pub_obj_list
# If the maximum depth has not yet been reached, calls function recursivly with increased depth
if (search_depth < search_depth_max):
process_citations_rec(new_citation_pub_obj_list, search_depth+1, search_depth_max, cit_type, test_var)
if (search_depth < search_depth_max):
process_citations_rec(new_citation_pub_obj_save_list, search_depth+1, search_depth_max, cit_type, test_var)
def add_citations(input_nodes, input_edges, citations_pub_obj_list, search_depth, search_depth_max, cit_type, test_var):
Loading