We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb7f01e commit a0ec17bCopy full SHA for a0ec17b
eval.py
@@ -27,6 +27,8 @@
27
from graph_pattern import GraphPattern
28
from graph_pattern import canonicalize
29
from graph_pattern import to_nx_graph
30
+from utils import exception_stack_catcher
31
+from utils import log_all_exceptions
32
33
logger = logging.getLogger(__name__)
34
logger.info('init')
@@ -378,6 +380,8 @@ def pattern_generator(
378
380
yield (n_patterns, None)
379
381
382
383
+@log_all_exceptions(logger)
384
+@exception_stack_catcher
385
def main():
386
# len | pcon | nej | all | candidates (all) | candidates (all) |
387
# | | | (canonical) | (old method) | (numerical) |
0 commit comments