Skip to content

Commit

Permalink
Faster tree search with networkx
Browse files Browse the repository at this point in the history
  • Loading branch information
CBroz1 committed Jan 29, 2024
1 parent 8875699 commit 7c0dd4d
Show file tree
Hide file tree
Showing 2 changed files with 255 additions and 203 deletions.
22 changes: 22 additions & 0 deletions src/spyglass/common/common_usage.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
"""A schema to store the usage of advanced Spyglass features.
Records show usage of features such as table chains, which will be used to
determine which features are used, how often, and by whom. This will help
plan future development of Spyglass.
"""
import datajoint as dj

schema = dj.schema("common_usage")


@schema
class CautiousDelete(dj.Manual):
definition = """
id: int auto_increment
---
dj_user: varchar(64)
duration: float
origin: varchar(64)
restriction: varchar(64)
merge_deletes = null: blob
"""
Loading

0 comments on commit 7c0dd4d

Please sign in to comment.