Skip to content

Commit

Permalink
update defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed May 6, 2024
1 parent bea8e7c commit bc89574
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions nx_arangodb/classes/digraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ def __init__(
# NOTE: Need to revisit these...
# self.maintain_node_dict_cache = False
# self.maintain_adj_dict_cache = False
self.use_nx_cache = False
self.use_coo_cache = False
self.use_nx_cache = True
self.use_coo_cache = True

self.src_indices = None
self.dst_indices = None
Expand Down
4 changes: 2 additions & 2 deletions nx_arangodb/classes/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ def __init__(
# NOTE: Need to revisit these...
# self.maintain_node_dict_cache = False
# self.maintain_adj_dict_cache = False
self.use_nx_cache = False
self.use_coo_cache = False
self.use_nx_cache = True
self.use_coo_cache = True

self.src_indices = None
self.dst_indices = None
Expand Down

0 comments on commit bc89574

Please sign in to comment.