From 364a4a7457595ee809192d4154b16fb511b91725 Mon Sep 17 00:00:00 2001 From: The R-U-SURE Authors Date: Sat, 18 Jan 2025 16:42:41 -0800 Subject: [PATCH] No public description PiperOrigin-RevId: 717087909 --- r_u_sure/__init__.py | 2 +- r_u_sure/decision_diagrams/__init__.py | 2 +- r_u_sure/decision_diagrams/consistent_path_dual_solver.py | 2 +- .../decision_diagrams/consistent_path_dual_solver_test.py | 2 +- r_u_sure/decision_diagrams/gated_state_dag.py | 2 +- r_u_sure/decision_diagrams/gated_state_dag_test.py | 2 +- r_u_sure/decision_diagrams/gated_state_dag_test_lib.py | 2 +- r_u_sure/decision_diagrams/packed_dags.py | 2 +- r_u_sure/decision_diagrams/packed_dags_test.py | 2 +- r_u_sure/edit_distance_utility/__init__.py | 2 +- r_u_sure/edit_distance_utility/constraint_dags.py | 2 +- r_u_sure/edit_distance_utility/edit_dags.py | 2 +- r_u_sure/edit_distance_utility/part_selection_dags.py | 2 +- r_u_sure/edit_distance_utility/region_decisions.py | 2 +- r_u_sure/notebooks/__init__.py | 2 +- r_u_sure/notebooks/demo_examples.py | 2 +- r_u_sure/numba_helpers/__init__.py | 2 +- r_u_sure/numba_helpers/numba_raise.py | 2 +- r_u_sure/numba_helpers/numba_type_util.py | 2 +- r_u_sure/numba_helpers/register_enum_hash.py | 2 +- r_u_sure/numba_helpers/register_enum_hash_test.py | 2 +- r_u_sure/parsing/__init__.py | 2 +- r_u_sure/parsing/pseudo_parser/__init__.py | 2 +- r_u_sure/parsing/pseudo_parser/stack_parser.py | 2 +- r_u_sure/parsing/pseudo_parser/stack_parser_test.py | 2 +- r_u_sure/parsing/pseudo_parser/utilities.py | 4 ++-- r_u_sure/parsing/pseudo_parser/utilities_test.py | 2 +- r_u_sure/parsing/python_builtin_tokens.py | 2 +- r_u_sure/parsing/sequence_from_pseudo_parse.py | 2 +- r_u_sure/parsing/sequence_from_pseudo_parse_test.py | 2 +- r_u_sure/parsing/subtokenizer.py | 2 +- r_u_sure/rendering/__init__.py | 2 +- r_u_sure/rendering/dag_annotator.py | 2 +- r_u_sure/rendering/render_in_notebook.py | 2 +- r_u_sure/rendering/rendering.py | 2 +- r_u_sure/rendering/simple_dag_annotator.py | 2 +- r_u_sure/rendering/svg_renderer.py | 2 +- r_u_sure/testing/run_tests.py | 2 +- r_u_sure/testing/test_flags.py | 2 +- r_u_sure/tree_structure/__init__.py | 2 +- r_u_sure/tree_structure/packed_sequence_nodes.py | 2 +- r_u_sure/tree_structure/sequence_node_helpers.py | 2 +- r_u_sure/tree_structure/sequence_node_helpers_test.py | 2 +- r_u_sure/tree_structure/sequence_nodes.py | 2 +- r_u_sure/tree_structure/token_prob_align.py | 2 +- r_u_sure/tree_structure/token_prob_align_test.py | 2 +- r_u_sure/tree_structure/transforms.py | 2 +- r_u_sure/tree_structure/transforms_test.py | 2 +- r_u_sure/wrappers/__init__.py | 2 +- r_u_sure/wrappers/call_sequence_wrapper.py | 2 +- r_u_sure/wrappers/call_sequence_wrapper_test.py | 2 +- r_u_sure/wrappers/demo_runner.py | 2 +- r_u_sure/wrappers/edit_distance_wrapper_base.py | 2 +- r_u_sure/wrappers/parser_tools.py | 2 +- r_u_sure/wrappers/prefix_truncation_wrapper.py | 2 +- r_u_sure/wrappers/prefix_truncation_wrapper_test.py | 2 +- r_u_sure/wrappers/uncertainty_regions_wrapper.py | 2 +- r_u_sure/wrappers/uncertainty_regions_wrapper_test.py | 2 +- r_u_sure/wrappers/wrapper_base.py | 2 +- r_u_sure/wrappers/wrapper_test_util.py | 2 +- 60 files changed, 61 insertions(+), 61 deletions(-) diff --git a/r_u_sure/__init__.py b/r_u_sure/__init__.py index e1f97f2..248c16f 100644 --- a/r_u_sure/__init__.py +++ b/r_u_sure/__init__.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/decision_diagrams/__init__.py b/r_u_sure/decision_diagrams/__init__.py index f40a1b8..45e79e4 100644 --- a/r_u_sure/decision_diagrams/__init__.py +++ b/r_u_sure/decision_diagrams/__init__.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/decision_diagrams/consistent_path_dual_solver.py b/r_u_sure/decision_diagrams/consistent_path_dual_solver.py index a968911..79c9abf 100644 --- a/r_u_sure/decision_diagrams/consistent_path_dual_solver.py +++ b/r_u_sure/decision_diagrams/consistent_path_dual_solver.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/decision_diagrams/consistent_path_dual_solver_test.py b/r_u_sure/decision_diagrams/consistent_path_dual_solver_test.py index be8c6e0..f27e888 100644 --- a/r_u_sure/decision_diagrams/consistent_path_dual_solver_test.py +++ b/r_u_sure/decision_diagrams/consistent_path_dual_solver_test.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/decision_diagrams/gated_state_dag.py b/r_u_sure/decision_diagrams/gated_state_dag.py index e97afff..2993365 100644 --- a/r_u_sure/decision_diagrams/gated_state_dag.py +++ b/r_u_sure/decision_diagrams/gated_state_dag.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/decision_diagrams/gated_state_dag_test.py b/r_u_sure/decision_diagrams/gated_state_dag_test.py index 1badb46..5c25722 100644 --- a/r_u_sure/decision_diagrams/gated_state_dag_test.py +++ b/r_u_sure/decision_diagrams/gated_state_dag_test.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/decision_diagrams/gated_state_dag_test_lib.py b/r_u_sure/decision_diagrams/gated_state_dag_test_lib.py index b9e9164..f744dbc 100644 --- a/r_u_sure/decision_diagrams/gated_state_dag_test_lib.py +++ b/r_u_sure/decision_diagrams/gated_state_dag_test_lib.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/decision_diagrams/packed_dags.py b/r_u_sure/decision_diagrams/packed_dags.py index c37ca60..024781c 100644 --- a/r_u_sure/decision_diagrams/packed_dags.py +++ b/r_u_sure/decision_diagrams/packed_dags.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/decision_diagrams/packed_dags_test.py b/r_u_sure/decision_diagrams/packed_dags_test.py index 660c8db..5dadf8e 100644 --- a/r_u_sure/decision_diagrams/packed_dags_test.py +++ b/r_u_sure/decision_diagrams/packed_dags_test.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/edit_distance_utility/__init__.py b/r_u_sure/edit_distance_utility/__init__.py index f40a1b8..45e79e4 100644 --- a/r_u_sure/edit_distance_utility/__init__.py +++ b/r_u_sure/edit_distance_utility/__init__.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/edit_distance_utility/constraint_dags.py b/r_u_sure/edit_distance_utility/constraint_dags.py index b2cde31..766cd47 100644 --- a/r_u_sure/edit_distance_utility/constraint_dags.py +++ b/r_u_sure/edit_distance_utility/constraint_dags.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/edit_distance_utility/edit_dags.py b/r_u_sure/edit_distance_utility/edit_dags.py index 2321df2..c94d960 100644 --- a/r_u_sure/edit_distance_utility/edit_dags.py +++ b/r_u_sure/edit_distance_utility/edit_dags.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/edit_distance_utility/part_selection_dags.py b/r_u_sure/edit_distance_utility/part_selection_dags.py index c5898b0..b984a6e 100644 --- a/r_u_sure/edit_distance_utility/part_selection_dags.py +++ b/r_u_sure/edit_distance_utility/part_selection_dags.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/edit_distance_utility/region_decisions.py b/r_u_sure/edit_distance_utility/region_decisions.py index f6b301e..3da9d13 100644 --- a/r_u_sure/edit_distance_utility/region_decisions.py +++ b/r_u_sure/edit_distance_utility/region_decisions.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/notebooks/__init__.py b/r_u_sure/notebooks/__init__.py index f40a1b8..45e79e4 100644 --- a/r_u_sure/notebooks/__init__.py +++ b/r_u_sure/notebooks/__init__.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/notebooks/demo_examples.py b/r_u_sure/notebooks/demo_examples.py index ca7d57e..a035a43 100644 --- a/r_u_sure/notebooks/demo_examples.py +++ b/r_u_sure/notebooks/demo_examples.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/numba_helpers/__init__.py b/r_u_sure/numba_helpers/__init__.py index f40a1b8..45e79e4 100644 --- a/r_u_sure/numba_helpers/__init__.py +++ b/r_u_sure/numba_helpers/__init__.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/numba_helpers/numba_raise.py b/r_u_sure/numba_helpers/numba_raise.py index 27b5dd8..b020277 100644 --- a/r_u_sure/numba_helpers/numba_raise.py +++ b/r_u_sure/numba_helpers/numba_raise.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/numba_helpers/numba_type_util.py b/r_u_sure/numba_helpers/numba_type_util.py index f7cba38..2e28cc0 100644 --- a/r_u_sure/numba_helpers/numba_type_util.py +++ b/r_u_sure/numba_helpers/numba_type_util.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/numba_helpers/register_enum_hash.py b/r_u_sure/numba_helpers/register_enum_hash.py index a479230..dae8b56 100644 --- a/r_u_sure/numba_helpers/register_enum_hash.py +++ b/r_u_sure/numba_helpers/register_enum_hash.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/numba_helpers/register_enum_hash_test.py b/r_u_sure/numba_helpers/register_enum_hash_test.py index cac0dd9..bae2bb8 100644 --- a/r_u_sure/numba_helpers/register_enum_hash_test.py +++ b/r_u_sure/numba_helpers/register_enum_hash_test.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/parsing/__init__.py b/r_u_sure/parsing/__init__.py index f40a1b8..45e79e4 100644 --- a/r_u_sure/parsing/__init__.py +++ b/r_u_sure/parsing/__init__.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/parsing/pseudo_parser/__init__.py b/r_u_sure/parsing/pseudo_parser/__init__.py index f40a1b8..45e79e4 100644 --- a/r_u_sure/parsing/pseudo_parser/__init__.py +++ b/r_u_sure/parsing/pseudo_parser/__init__.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/parsing/pseudo_parser/stack_parser.py b/r_u_sure/parsing/pseudo_parser/stack_parser.py index 93d9863..6f3f1ff 100644 --- a/r_u_sure/parsing/pseudo_parser/stack_parser.py +++ b/r_u_sure/parsing/pseudo_parser/stack_parser.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/parsing/pseudo_parser/stack_parser_test.py b/r_u_sure/parsing/pseudo_parser/stack_parser_test.py index 30c01c7..2c5c18d 100644 --- a/r_u_sure/parsing/pseudo_parser/stack_parser_test.py +++ b/r_u_sure/parsing/pseudo_parser/stack_parser_test.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/parsing/pseudo_parser/utilities.py b/r_u_sure/parsing/pseudo_parser/utilities.py index df775d3..b510d3f 100644 --- a/r_u_sure/parsing/pseudo_parser/utilities.py +++ b/r_u_sure/parsing/pseudo_parser/utilities.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -284,7 +284,7 @@ def infer_split_truncation_index( if node.hi != node.lo: # update the index into ''.join(tokens_raw), i.e. the code code_index += len(tokens_raw[node.lo]) - if after_cursor: + if after_cursor and node.parent: if (node.parent.annotation == 'split' and node.parent.children[-1] == node and tokens_raw[node.lo] in splitters): diff --git a/r_u_sure/parsing/pseudo_parser/utilities_test.py b/r_u_sure/parsing/pseudo_parser/utilities_test.py index 78a2bff..f79e1d4 100644 --- a/r_u_sure/parsing/pseudo_parser/utilities_test.py +++ b/r_u_sure/parsing/pseudo_parser/utilities_test.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/parsing/python_builtin_tokens.py b/r_u_sure/parsing/python_builtin_tokens.py index 1cfec99..b7f1496 100644 --- a/r_u_sure/parsing/python_builtin_tokens.py +++ b/r_u_sure/parsing/python_builtin_tokens.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/parsing/sequence_from_pseudo_parse.py b/r_u_sure/parsing/sequence_from_pseudo_parse.py index 1b06261..03493fe 100644 --- a/r_u_sure/parsing/sequence_from_pseudo_parse.py +++ b/r_u_sure/parsing/sequence_from_pseudo_parse.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/parsing/sequence_from_pseudo_parse_test.py b/r_u_sure/parsing/sequence_from_pseudo_parse_test.py index c7b7bd3..e63beae 100644 --- a/r_u_sure/parsing/sequence_from_pseudo_parse_test.py +++ b/r_u_sure/parsing/sequence_from_pseudo_parse_test.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/parsing/subtokenizer.py b/r_u_sure/parsing/subtokenizer.py index 52ff1f6..75ce39a 100644 --- a/r_u_sure/parsing/subtokenizer.py +++ b/r_u_sure/parsing/subtokenizer.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/rendering/__init__.py b/r_u_sure/rendering/__init__.py index f40a1b8..45e79e4 100644 --- a/r_u_sure/rendering/__init__.py +++ b/r_u_sure/rendering/__init__.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/rendering/dag_annotator.py b/r_u_sure/rendering/dag_annotator.py index 588a8e9..0177fc5 100644 --- a/r_u_sure/rendering/dag_annotator.py +++ b/r_u_sure/rendering/dag_annotator.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/rendering/render_in_notebook.py b/r_u_sure/rendering/render_in_notebook.py index 3c84767..ac490c5 100644 --- a/r_u_sure/rendering/render_in_notebook.py +++ b/r_u_sure/rendering/render_in_notebook.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/rendering/rendering.py b/r_u_sure/rendering/rendering.py index 8a10ed5..187fc96 100644 --- a/r_u_sure/rendering/rendering.py +++ b/r_u_sure/rendering/rendering.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/rendering/simple_dag_annotator.py b/r_u_sure/rendering/simple_dag_annotator.py index efa99ee..d9a81eb 100644 --- a/r_u_sure/rendering/simple_dag_annotator.py +++ b/r_u_sure/rendering/simple_dag_annotator.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/rendering/svg_renderer.py b/r_u_sure/rendering/svg_renderer.py index 3b8d710..dd86fc7 100644 --- a/r_u_sure/rendering/svg_renderer.py +++ b/r_u_sure/rendering/svg_renderer.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/testing/run_tests.py b/r_u_sure/testing/run_tests.py index 02a2817..fdb0518 100644 --- a/r_u_sure/testing/run_tests.py +++ b/r_u_sure/testing/run_tests.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/testing/test_flags.py b/r_u_sure/testing/test_flags.py index 5ccb42d..7d64aa0 100644 --- a/r_u_sure/testing/test_flags.py +++ b/r_u_sure/testing/test_flags.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/tree_structure/__init__.py b/r_u_sure/tree_structure/__init__.py index f40a1b8..45e79e4 100644 --- a/r_u_sure/tree_structure/__init__.py +++ b/r_u_sure/tree_structure/__init__.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/tree_structure/packed_sequence_nodes.py b/r_u_sure/tree_structure/packed_sequence_nodes.py index 539d174..7fb9909 100644 --- a/r_u_sure/tree_structure/packed_sequence_nodes.py +++ b/r_u_sure/tree_structure/packed_sequence_nodes.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/tree_structure/sequence_node_helpers.py b/r_u_sure/tree_structure/sequence_node_helpers.py index c2f0efb..02af684 100644 --- a/r_u_sure/tree_structure/sequence_node_helpers.py +++ b/r_u_sure/tree_structure/sequence_node_helpers.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/tree_structure/sequence_node_helpers_test.py b/r_u_sure/tree_structure/sequence_node_helpers_test.py index f8e051a..66be15a 100644 --- a/r_u_sure/tree_structure/sequence_node_helpers_test.py +++ b/r_u_sure/tree_structure/sequence_node_helpers_test.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/tree_structure/sequence_nodes.py b/r_u_sure/tree_structure/sequence_nodes.py index 694edbc..9c3c08e 100644 --- a/r_u_sure/tree_structure/sequence_nodes.py +++ b/r_u_sure/tree_structure/sequence_nodes.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/tree_structure/token_prob_align.py b/r_u_sure/tree_structure/token_prob_align.py index 46b876f..a08e586 100644 --- a/r_u_sure/tree_structure/token_prob_align.py +++ b/r_u_sure/tree_structure/token_prob_align.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/tree_structure/token_prob_align_test.py b/r_u_sure/tree_structure/token_prob_align_test.py index e0318fe..91f519a 100644 --- a/r_u_sure/tree_structure/token_prob_align_test.py +++ b/r_u_sure/tree_structure/token_prob_align_test.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/tree_structure/transforms.py b/r_u_sure/tree_structure/transforms.py index 219b598..7fadaad 100644 --- a/r_u_sure/tree_structure/transforms.py +++ b/r_u_sure/tree_structure/transforms.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/tree_structure/transforms_test.py b/r_u_sure/tree_structure/transforms_test.py index a4fde77..e23beb2 100644 --- a/r_u_sure/tree_structure/transforms_test.py +++ b/r_u_sure/tree_structure/transforms_test.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/wrappers/__init__.py b/r_u_sure/wrappers/__init__.py index f40a1b8..45e79e4 100644 --- a/r_u_sure/wrappers/__init__.py +++ b/r_u_sure/wrappers/__init__.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/wrappers/call_sequence_wrapper.py b/r_u_sure/wrappers/call_sequence_wrapper.py index f84b635..08efc4c 100644 --- a/r_u_sure/wrappers/call_sequence_wrapper.py +++ b/r_u_sure/wrappers/call_sequence_wrapper.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/wrappers/call_sequence_wrapper_test.py b/r_u_sure/wrappers/call_sequence_wrapper_test.py index 1cb1652..45e174a 100644 --- a/r_u_sure/wrappers/call_sequence_wrapper_test.py +++ b/r_u_sure/wrappers/call_sequence_wrapper_test.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/wrappers/demo_runner.py b/r_u_sure/wrappers/demo_runner.py index c0af99b..7bb90ca 100644 --- a/r_u_sure/wrappers/demo_runner.py +++ b/r_u_sure/wrappers/demo_runner.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/wrappers/edit_distance_wrapper_base.py b/r_u_sure/wrappers/edit_distance_wrapper_base.py index 302a138..d0d79df 100644 --- a/r_u_sure/wrappers/edit_distance_wrapper_base.py +++ b/r_u_sure/wrappers/edit_distance_wrapper_base.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/wrappers/parser_tools.py b/r_u_sure/wrappers/parser_tools.py index c69b479..fffc629 100644 --- a/r_u_sure/wrappers/parser_tools.py +++ b/r_u_sure/wrappers/parser_tools.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/wrappers/prefix_truncation_wrapper.py b/r_u_sure/wrappers/prefix_truncation_wrapper.py index c6e589b..f7bf099 100644 --- a/r_u_sure/wrappers/prefix_truncation_wrapper.py +++ b/r_u_sure/wrappers/prefix_truncation_wrapper.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/wrappers/prefix_truncation_wrapper_test.py b/r_u_sure/wrappers/prefix_truncation_wrapper_test.py index f4b6ea0..cfbceca 100644 --- a/r_u_sure/wrappers/prefix_truncation_wrapper_test.py +++ b/r_u_sure/wrappers/prefix_truncation_wrapper_test.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/wrappers/uncertainty_regions_wrapper.py b/r_u_sure/wrappers/uncertainty_regions_wrapper.py index eb5f3fd..20dedcf 100644 --- a/r_u_sure/wrappers/uncertainty_regions_wrapper.py +++ b/r_u_sure/wrappers/uncertainty_regions_wrapper.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/wrappers/uncertainty_regions_wrapper_test.py b/r_u_sure/wrappers/uncertainty_regions_wrapper_test.py index b5edb23..6e272ff 100644 --- a/r_u_sure/wrappers/uncertainty_regions_wrapper_test.py +++ b/r_u_sure/wrappers/uncertainty_regions_wrapper_test.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/wrappers/wrapper_base.py b/r_u_sure/wrappers/wrapper_base.py index 7a06899..c5ff528 100644 --- a/r_u_sure/wrappers/wrapper_base.py +++ b/r_u_sure/wrappers/wrapper_base.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/r_u_sure/wrappers/wrapper_test_util.py b/r_u_sure/wrappers/wrapper_test_util.py index e8e08fa..8a5febd 100644 --- a/r_u_sure/wrappers/wrapper_test_util.py +++ b/r_u_sure/wrappers/wrapper_test_util.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2023 The R-U-SURE Authors. +# Copyright 2024 The R-U-SURE Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.