From 2fb9fd633cb9041bb650b27a6dae33812c56fd9a Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 19 Mar 2025 17:11:51 +0000
Subject: [PATCH 001/137] Update storage branch: Wed Mar 19 17:11:51 UTC 2025
---
README.md | 279 ++++++++++++++++++++++++++++++++++++++++++++++++++
data/.gitkeep | 0
2 files changed, 279 insertions(+)
create mode 100644 README.md
create mode 100644 data/.gitkeep
diff --git a/README.md b/README.md
new file mode 100644
index 000000000..0c32ffbdd
--- /dev/null
+++ b/README.md
@@ -0,0 +1,279 @@
+
+
+
+
+
+[![Docs][docs-shield]][docs-url]
+[![PyPi][pypiversion-shield]][pypi-url]
+[![PyPi][pypi-shield]][pypi-url]
+
+[![License][license-shield]][license-url]
+[![PyPi][downloads-shield]][downloads-url]
+[![Joss][joss-shield]][joss-url]
+
+
+
+
+
+
+
+
+
+[docs-shield]: https://img.shields.io/badge/PINA-docs-blue?style=for-the-badge
+
+[docs-url]: https://mathlab.github.io/PINA/
+
+[pypi-shield]: https://img.shields.io/pypi/pyversions/pina-mathlab?style=for-the-badge
+
+[pypi-url]: https://pypi.org/project/pina-mathlab/
+
+[pypiversion-shield]: https://img.shields.io/pypi/v/pina-mathlab?style=for-the-badge
+
+[downloads-shield]: https://img.shields.io/pypi/dm/pina-mathlab?style=for-the-badge
+
+[downloads-url]: https://pypi.org/project/pina-mathlab/
+
+[codecov-shield]: https://img.shields.io/codecov/c/gh/zenml-io/zenml?style=for-the-badge
+
+[codecov-url]: https://codecov.io/gh/zenml-io/zenml
+
+[contributors-shield]: https://img.shields.io/github/contributors/zenml-io/zenml?style=for-the-badge
+
+[contributors-url]: https://github.com/othneildrew/Best-README-Template/graphs/contributors
+
+[license-shield]: https://img.shields.io/github/license/mathLab/pina?style=for-the-badge
+
+[license-url]: https://github.com/mathLab/PINA/blob/main/LICENSE.rst
+
+[joss-shield]: https://img.shields.io/badge/JOSS-10.21105/joss.05352-red?style=for-the-badge
+
+[joss-url]: https://joss.theoj.org/papers/10.21105/joss.05352
+
+[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=for-the-badge&logo=linkedin&colorB=555
+
+
+
+[slack-shield]: https://img.shields.io/badge/-Slack-black.svg?style=for-the-badge&logo=linkedin&colorB=555
+
+[slack-url]: https://zenml.io/slack-invite
+
+[build-shield]: https://img.shields.io/github/workflow/status/zenml-io/zenml/Build,%20Lint,%20Unit%20&%20Integration%20Test/develop?logo=github&style=for-the-badge
+
+[build-url]: https://github.com/zenml-io/zenml/actions/workflows/ci.yml
+
+
+
+
+
+
+
+
+
Solve equations, intuitively.
+
+
+ A simple framework to solve difficult problems with neural networks.
+
+ Explore the docs »
+
+
+
+
+
+
+
+
+
+
+ 🏁 Table of Contents
+
+ Introduction
+ Quickstart
+
+ Solve Your Differential Problem
+
+
+
+ Contributing and Community
+
+ License
+
+
+
+
+
+# 🤖 Introduction
+
+🤹 PINA is an open-source Python library providing an intuitive interface for solving differential equations using PINNs, NOs or both together. Based on [PyTorch](https://pytorch.org/) and [PyTorchLightning](https://lightning.ai/docs/pytorch/stable/), PINA offers a simple and intuitive way to formalize a specific (differential) problem and solve it using neural networks . The approximated solution of a differential equation can be implemented using PINA in a few lines of code thanks to the intuitive and user-friendly interface.
+
+- 👨💻 Formulate your differential problem in few lines of code, just translating the mathematical equations into Python
+
+- 📄 Training your neural network in order to solve the problem
+
+- 🚀 Use the model to visualize and analyze the solution!
+
+
+
+
+# 🤸 Quickstart
+
+[Install PINA](https://mathlab.github.io/PINA/_rst/installation.html) via
+[PyPI](https://pypi.org/project/pina-mathlab/). Python 3 is required:
+
+```bash
+pip install "pina-mathlab"
+```
+
+
+# 🖼️ Solve Your Differential Problem
+
+PINN is a novel approach that involves neural networks to solve supervised learning tasks while respecting any given law of physics described by general nonlinear differential equations. Proposed in [Physics-informed neural networks: A deep learning framework for solving forward and inverse problems involving nonlinear partial differential equations](https://www.sciencedirect.com/science/article/pii/S0021999118307125?casa_token=p0BAG8SoAbEAAAAA:3H3r1G0SJ7IdXWm-FYGRJZ0RAb_T1qynSdfn-2VxqQubiSWnot5yyKli9UiH82rqQWY_Wzfq0HVV), such framework aims to solve problems in a continuous and nonlinear settings.
+
+Differenlty from PINNs, Neural Operators learn differential operators using supervised learning strategies. By learning the differential operator, the neural network is able to generalize across different instances of the differential equations (e.g. different forcing terms), without the need of re-training.
+
+PINA can be used for PINN learning, Neural Operator learning, or both. Below is a simple example of PINN learning, for Neural Operator or more on PINNs look at our [tutorials](https://github.com/mathLab/PINA/tree/v0.1/tutorials)
+
+## 🔋 1. Formulate the Problem
+
+First step is formalization of the problem in the PINA framework. We take as example here a simple Poisson problem, but PINA is already able to deal with **multi-dimensional**, **parametric**, **time-dependent** problems.
+Consider:
+
+$$
+\begin{cases}
+\Delta u = \sin(\pi x)\sin(\pi y)\quad& \text{in } D \\
+u = 0& \text{in } \partial D \end{cases}$$
+
+where $D = [0, 1]^2$ is a square domain, $u$ the unknown field, and $\partial D = \Gamma_1 \cup \Gamma_2 \cup \Gamma_3 \cup \Gamma_4$, where $\Gamma_i$ are the boundaries of the square for $i=1,\cdots,4$. The translation in PINA code becomes a new class containing all the information about the domain, about the `conditions` and nothing more:
+
+```python
+class Poisson(SpatialProblem):
+ output_variables = ['u']
+ spatial_domain = CartesianDomain({'x': [0, 1], 'y': [0, 1]})
+
+ def laplace_equation(input_, output_):
+ force_term = (torch.sin(input_.extract(['x'])*torch.pi) *
+ torch.sin(input_.extract(['y'])*torch.pi))
+ laplacian_u = laplacian(output_, input_, components=['u'], d=['x', 'y'])
+ return laplacian_u - force_term
+
+ conditions = {
+ 'gamma1': Condition(location=CartesianDomain({'x': [0, 1], 'y': 1}), equation=FixedValue(0.)),
+ 'gamma2': Condition(location=CartesianDomain({'x': [0, 1], 'y': 0}), equation=FixedValue(0.)),
+ 'gamma3': Condition(location=CartesianDomain({'x': 1, 'y': [0, 1]}), equation=FixedValue(0.)),
+ 'gamma4': Condition(location=CartesianDomain({'x': 0, 'y': [0, 1]}), equation=FixedValue(0.)),
+ 'D': Condition(location=CartesianDomain({'x': [0, 1], 'y': [0, 1]}), equation=Equation(laplace_equation)),
+ }
+```
+
+## 👨🍳 2. Solve the Problem
+After defining it, we want of course to solve such a problem. The only things we need is a `model`, in this case a feed forward network, and some samples of the domain and boundaries, here using a Cartesian grid. In these points we are going to evaluate the residuals, which is nothing but the loss of the network. We optimize the `model` using a solver, here a `PINN`. Other types of solvers are possible, such as supervised solver or GAN based solver.
+
+```python
+# make model + solver + trainer
+model = FeedForward(
+ layers=[10, 10],
+ func=Softplus,
+ output_dimensions=len(problem.output_variables),
+ input_dimensions=len(problem.input_variables)
+)
+pinn = PINN(problem, model, optimizer_kwargs={'lr':0.006, 'weight_decay':1e-8})
+trainer = Trainer(pinn, max_epochs=1000, accelerator='gpu', enable_model_summary=False, batch_size=8)
+
+# train
+trainer.train()
+```
+After the training we can infer our model, save it or just plot the approximation. Below the graphical representation of the PINN approximation, the analytical solution of the problem and the absolute error, from left to right.
+
+
+
+
+
+
+
+# 🙌 Contributing and Community
+
+We would love to develop PINA together with our community! Best way to get
+started is to select any issue from the [`good-first-issue`
+label](https://github.com/mathLab/PINA/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22). If you
+would like to contribute, please review our [Contributing
+Guide](CONTRIBUTING.md) for all relevant details.
+
+We warmly thank all the contributors that have supported PINA so far:
+
+
+
+
+
+Made with [contrib.rocks](https://contrib.rocks).
+
+
+
+
+
+# 📜 License
+
+PINA is distributed under the terms of the MIT License.
+A complete version of the license is available in the [LICENSE.rst](LICENSE.rst) file in this repository. Any contribution made to this project will be licensed under the MIT License.
diff --git a/data/.gitkeep b/data/.gitkeep
new file mode 100644
index 000000000..e69de29bb
From 9a636aecdd232cd4f4e51d4bdc916b84b9643a65 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 19 Mar 2025 17:11:52 +0000
Subject: [PATCH 002/137] Add/Update badge:
e5e9adb5380b57763b41bc182ecdc55e737b8785
---
data/0.2/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/0.2/badge.svg
diff --git a/data/0.2/badge.svg b/data/0.2/badge.svg
new file mode 100644
index 000000000..5306860df
--- /dev/null
+++ b/data/0.2/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 88.44%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 88.44%
+ 88.44%
+
+
+
+
+
+
+
\ No newline at end of file
From 117bf4dc1760f35da1b8decae1b2f0afcb2d107b Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 20 Mar 2025 09:49:31 +0000
Subject: [PATCH 003/137] Add/Update badge:
e438a968400fe17468eb27309386e977f3b44586
---
data/trigger-tutorial/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/trigger-tutorial/badge.svg
diff --git a/data/trigger-tutorial/badge.svg b/data/trigger-tutorial/badge.svg
new file mode 100644
index 000000000..5306860df
--- /dev/null
+++ b/data/trigger-tutorial/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 88.44%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 88.44%
+ 88.44%
+
+
+
+
+
+
+
\ No newline at end of file
From f57a77a88081052f806466a9dbdc3c4e9ea4b0b5 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 21 Mar 2025 10:32:04 +0000
Subject: [PATCH 004/137] Add/Update badge:
e591f1fba7de9b2198b84e5a9cc0089be4f37120
---
data/messagepassing/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/messagepassing/badge.svg
diff --git a/data/messagepassing/badge.svg b/data/messagepassing/badge.svg
new file mode 100644
index 000000000..5306860df
--- /dev/null
+++ b/data/messagepassing/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 88.44%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 88.44%
+ 88.44%
+
+
+
+
+
+
+
\ No newline at end of file
From c0950739d0d6b5a723c813a82d4a3a0277bcbe50 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 24 Mar 2025 11:58:26 +0000
Subject: [PATCH 005/137] Add/Update badge:
7aee2c7a313655eb3f9dcc97cd44a79a4ff9ed12
---
data/dario-coscia-patch-1/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/dario-coscia-patch-1/badge.svg
diff --git a/data/dario-coscia-patch-1/badge.svg b/data/dario-coscia-patch-1/badge.svg
new file mode 100644
index 000000000..cd2ae7f21
--- /dev/null
+++ b/data/dario-coscia-patch-1/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 88.40%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 88.40%
+ 88.40%
+
+
+
+
+
+
+
\ No newline at end of file
From 3a6bf57c0a03eeb4fb463c3b319acd1a260de679 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 31 Mar 2025 15:33:52 +0000
Subject: [PATCH 006/137] Add/Update badge:
239b54a296c2ec267d0bdab0d4b3fb5163091032
---
data/workflow_tut/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/workflow_tut/badge.svg
diff --git a/data/workflow_tut/badge.svg b/data/workflow_tut/badge.svg
new file mode 100644
index 000000000..d66a9803b
--- /dev/null
+++ b/data/workflow_tut/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 88.59%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 88.59%
+ 88.59%
+
+
+
+
+
+
+
\ No newline at end of file
From ace2990e39d84846d6b26e95b3f23d989ad4a9c5 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 3 Apr 2025 17:45:31 +0000
Subject: [PATCH 007/137] Add/Update badge:
31039353ab180202549c734bbd98bc2acd563da9
---
data/dario-coscia-patch-1/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dario-coscia-patch-1/badge.svg b/data/dario-coscia-patch-1/badge.svg
index cd2ae7f21..92470bec2 100644
--- a/data/dario-coscia-patch-1/badge.svg
+++ b/data/dario-coscia-patch-1/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 88.40%
+
+ Test Coverage: 88.53%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 88.40%
- 88.40%
+ 88.53%
+ 88.53%
From ddd3b4472f5a1bea0f6b396c868fad2d0e2f5604 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 3 Apr 2025 17:55:42 +0000
Subject: [PATCH 008/137] Add/Update badge:
e8cbe9aef1d3e8fc319f81274f70e3b9b26369be
---
data/tutorials_update/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/tutorials_update/badge.svg
diff --git a/data/tutorials_update/badge.svg b/data/tutorials_update/badge.svg
new file mode 100644
index 000000000..3ae304691
--- /dev/null
+++ b/data/tutorials_update/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 88.83%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 88.83%
+ 88.83%
+
+
+
+
+
+
+
\ No newline at end of file
From 81c25e8ce7d02eef056c752d7f02ad7cd41c5331 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 4 Apr 2025 13:17:38 +0000
Subject: [PATCH 009/137] Add/Update badge:
e8e13d9afc31cdb9c19770f6a4580499fe7e3c1a
---
data/dario-coscia-patch-2/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/dario-coscia-patch-2/badge.svg
diff --git a/data/dario-coscia-patch-2/badge.svg b/data/dario-coscia-patch-2/badge.svg
new file mode 100644
index 000000000..d66a9803b
--- /dev/null
+++ b/data/dario-coscia-patch-2/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 88.59%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 88.59%
+ 88.59%
+
+
+
+
+
+
+
\ No newline at end of file
From d326a75a00c35eff3359ad49a49911e82f7ec04b Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 8 Apr 2025 15:03:31 +0000
Subject: [PATCH 010/137] Add/Update badge:
33d11c8b23e361344a2aa91399ff6808a265e7bb
---
data/new_solvers/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/new_solvers/badge.svg
diff --git a/data/new_solvers/badge.svg b/data/new_solvers/badge.svg
new file mode 100644
index 000000000..3654cd683
--- /dev/null
+++ b/data/new_solvers/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 88.95%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 88.95%
+ 88.95%
+
+
+
+
+
+
+
\ No newline at end of file
From 81d55c91c158e20d7b0eba7ec92234c9939dbcce Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 8 Apr 2025 17:22:28 +0000
Subject: [PATCH 011/137] Add/Update badge:
66e6659678acfa31844f14d5172fd9380b3fe6d8
---
data/new_solvers/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/new_solvers/badge.svg b/data/new_solvers/badge.svg
index 3654cd683..44a562e2d 100644
--- a/data/new_solvers/badge.svg
+++ b/data/new_solvers/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 88.95%
+
+ Test Coverage: 88.92%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 88.95%
- 88.95%
+ 88.92%
+ 88.92%
From afd42b5b008b32976225d7175ef479377db659c4 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 8 Apr 2025 17:31:58 +0000
Subject: [PATCH 012/137] Add/Update badge:
8681d1e089f6045375d8c3053b27e69473ac88bf
---
data/tutorials_update/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/tutorials_update/badge.svg b/data/tutorials_update/badge.svg
index 3ae304691..179aef0ba 100644
--- a/data/tutorials_update/badge.svg
+++ b/data/tutorials_update/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 88.83%
+
+ Test Coverage: 88.78%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 88.83%
- 88.83%
+ 88.78%
+ 88.78%
From 7ce96a2d2f1ed15784bee1ece6d4b3eba52c2ed2 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 9 Apr 2025 09:27:56 +0000
Subject: [PATCH 013/137] Add/Update badge:
59f310b23e70a2f7657bba1788f47229bd7e135e
---
data/new_solvers/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/new_solvers/badge.svg b/data/new_solvers/badge.svg
index 44a562e2d..066da159f 100644
--- a/data/new_solvers/badge.svg
+++ b/data/new_solvers/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 88.92%
+
+ Test Coverage: 88.96%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 88.92%
- 88.92%
+ 88.96%
+ 88.96%
From 38a08e5ae6aae318ea56c68d2150e0d6aa6bb0e2 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 9 Apr 2025 13:12:31 +0000
Subject: [PATCH 014/137] Add/Update badge:
1ea7596d375aa0543396bbb6c79fb43e474564da
---
data/messagepassing/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/messagepassing/badge.svg b/data/messagepassing/badge.svg
index 5306860df..066da159f 100644
--- a/data/messagepassing/badge.svg
+++ b/data/messagepassing/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 88.44%
+
+ Test Coverage: 88.96%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 88.44%
- 88.44%
+ 88.96%
+ 88.96%
From 87a4d233fa1adb9d93732abcd5a0234f7e2a04af Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 9 Apr 2025 14:36:33 +0000
Subject: [PATCH 015/137] Add/Update badge:
7271fe7c26f889ba15ed52cdd2199e18a98f0ea8
---
data/messagepassing/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/messagepassing/badge.svg b/data/messagepassing/badge.svg
index 066da159f..6f38ea49b 100644
--- a/data/messagepassing/badge.svg
+++ b/data/messagepassing/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 88.96%
+
+ Test Coverage: 87.90%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 88.96%
- 88.96%
+ 87.90%
+ 87.90%
From dc805380acfca735d43dbfc2c9bf8d15fd554eaa Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 9 Apr 2025 15:28:27 +0000
Subject: [PATCH 016/137] Add/Update badge:
294984831a554c5457dfda88b1e4e78c5a3b3c5e
---
data/messagepassing/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/messagepassing/badge.svg b/data/messagepassing/badge.svg
index 6f38ea49b..77546eb14 100644
--- a/data/messagepassing/badge.svg
+++ b/data/messagepassing/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 87.90%
+
+ Test Coverage: 87.24%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 87.90%
- 87.90%
+ 87.24%
+ 87.24%
From 401147b30624ca719bdbb8998eb184816653eca3 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 10 Apr 2025 11:01:30 +0000
Subject: [PATCH 017/137] Add/Update badge:
ccfaf8e131abef75f35f23641d78af9d5dff5934
---
data/tutorials_update/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/tutorials_update/badge.svg b/data/tutorials_update/badge.svg
index 179aef0ba..066da159f 100644
--- a/data/tutorials_update/badge.svg
+++ b/data/tutorials_update/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 88.78%
+
+ Test Coverage: 88.96%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 88.78%
- 88.78%
+ 88.96%
+ 88.96%
From a4cba5cf43b9fddfb06bb0dbac1157e534e58019 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 10 Apr 2025 15:37:50 +0000
Subject: [PATCH 018/137] Add/Update badge:
3caf0d21b0b4469b79c5ab5992c481778d36b5de
---
data/update_pinn/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/update_pinn/badge.svg
diff --git a/data/update_pinn/badge.svg b/data/update_pinn/badge.svg
new file mode 100644
index 000000000..79ea869fa
--- /dev/null
+++ b/data/update_pinn/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 88.93%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 88.93%
+ 88.93%
+
+
+
+
+
+
+
\ No newline at end of file
From f93b6ab807a494c184e934e714465460a864d968 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 10 Apr 2025 15:58:56 +0000
Subject: [PATCH 019/137] Add/Update badge:
c59d1ce00f891793a27c01afb31eb07373d245a7
---
data/dario-coscia-lt/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/dario-coscia-lt/badge.svg
diff --git a/data/dario-coscia-lt/badge.svg b/data/dario-coscia-lt/badge.svg
new file mode 100644
index 000000000..066da159f
--- /dev/null
+++ b/data/dario-coscia-lt/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 88.96%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 88.96%
+ 88.96%
+
+
+
+
+
+
+
\ No newline at end of file
From 43bc45566c346cea8b00b09c261e3102f07669a8 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 11 Apr 2025 17:03:10 +0000
Subject: [PATCH 020/137] Add/Update badge:
5d1b0dbf0d085f89cf6d6303afc7a515f4e09598
---
data/update_pinn/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/update_pinn/badge.svg b/data/update_pinn/badge.svg
index 79ea869fa..44a562e2d 100644
--- a/data/update_pinn/badge.svg
+++ b/data/update_pinn/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 88.93%
+
+ Test Coverage: 88.92%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 88.93%
- 88.93%
+ 88.92%
+ 88.92%
From fa4fa0e846aff64f81da45300b29d51b7d3b8b6f Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 11 Apr 2025 17:29:56 +0000
Subject: [PATCH 021/137] Add/Update badge:
ba883c8c07dce58acaab1553c01aa66900be9de8
---
data/dario-coscia-PR-template/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/dario-coscia-PR-template/badge.svg
diff --git a/data/dario-coscia-PR-template/badge.svg b/data/dario-coscia-PR-template/badge.svg
new file mode 100644
index 000000000..066da159f
--- /dev/null
+++ b/data/dario-coscia-PR-template/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 88.96%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 88.96%
+ 88.96%
+
+
+
+
+
+
+
\ No newline at end of file
From 9030b85788b740bd6cfc5e564da550ff904e9fed Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 14 Apr 2025 09:50:41 +0000
Subject: [PATCH 022/137] Add/Update badge:
793e036cb59380e56106f7c30bb9445fe3c7d9a8
---
data/tutorials_update/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/tutorials_update/badge.svg b/data/tutorials_update/badge.svg
index 066da159f..44a562e2d 100644
--- a/data/tutorials_update/badge.svg
+++ b/data/tutorials_update/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 88.96%
+
+ Test Coverage: 88.92%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 88.96%
- 88.96%
+ 88.92%
+ 88.92%
From 576a1a70c4d00b96388c680b209f273b8088eccd Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 15 Apr 2025 12:07:08 +0000
Subject: [PATCH 023/137] Add/Update badge:
df22f0255c12950e6086bf4207461bfa0ab56831
---
data/switch_version/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/switch_version/badge.svg
diff --git a/data/switch_version/badge.svg b/data/switch_version/badge.svg
new file mode 100644
index 000000000..44a562e2d
--- /dev/null
+++ b/data/switch_version/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 88.92%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 88.92%
+ 88.92%
+
+
+
+
+
+
+
\ No newline at end of file
From 4de93e5cfda6e314dc6622c83e4f0c7c8dd97891 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 22 Apr 2025 11:48:14 +0000
Subject: [PATCH 024/137] Add/Update badge:
70931ff17fd8f6daefbc7a15ef0011f0f6a118dc
---
data/update_readme/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/update_readme/badge.svg
diff --git a/data/update_readme/badge.svg b/data/update_readme/badge.svg
new file mode 100644
index 000000000..44a562e2d
--- /dev/null
+++ b/data/update_readme/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 88.92%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 88.92%
+ 88.92%
+
+
+
+
+
+
+
\ No newline at end of file
From b838d72ae6db3f680247fed760a3ddd26e8c9f1c Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 23 Apr 2025 09:47:12 +0000
Subject: [PATCH 025/137] Add/Update badge:
db915eeef566dce0bb02f6a2b7b59eda38583c47
---
data/tutorials_update/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/tutorials_update/badge.svg b/data/tutorials_update/badge.svg
index 44a562e2d..8134c30e4 100644
--- a/data/tutorials_update/badge.svg
+++ b/data/tutorials_update/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 88.92%
+
+ Test Coverage: 88.91%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 88.92%
- 88.92%
+ 88.91%
+ 88.91%
From 394d6e1c91bdfe2be96a2ce6a62c210cefad238d Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 23 Apr 2025 09:48:18 +0000
Subject: [PATCH 026/137] Add/Update badge:
21ba0e17144062c342f787f419c6e873260d3a83
---
data/update_doc/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/update_doc/badge.svg
diff --git a/data/update_doc/badge.svg b/data/update_doc/badge.svg
new file mode 100644
index 000000000..8134c30e4
--- /dev/null
+++ b/data/update_doc/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 88.91%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 88.91%
+ 88.91%
+
+
+
+
+
+
+
\ No newline at end of file
From 33d40a93bbe2f8c73fa9617494f719a32bed6597 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 23 Apr 2025 14:28:12 +0000
Subject: [PATCH 027/137] Add/Update badge:
1f89dc6b58330d15e2d0e40ed34dd8964cacef7f
---
data/dev/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/dev/badge.svg
diff --git a/data/dev/badge.svg b/data/dev/badge.svg
new file mode 100644
index 000000000..8134c30e4
--- /dev/null
+++ b/data/dev/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 88.91%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 88.91%
+ 88.91%
+
+
+
+
+
+
+
\ No newline at end of file
From 75b935469e5d305bd097b605e6669bb2a3c697e0 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 23 Apr 2025 17:29:09 +0000
Subject: [PATCH 028/137] Add/Update badge:
18cc02781e19077b5ff3734e5d821e29666774ec
---
data/dario-coscia-patch-1/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dario-coscia-patch-1/badge.svg b/data/dario-coscia-patch-1/badge.svg
index 92470bec2..8134c30e4 100644
--- a/data/dario-coscia-patch-1/badge.svg
+++ b/data/dario-coscia-patch-1/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 88.53%
+
+ Test Coverage: 88.91%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 88.53%
- 88.53%
+ 88.91%
+ 88.91%
From 203f62a0016399ae6d8769cd55bb85caa3d350df Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 24 Apr 2025 14:36:56 +0000
Subject: [PATCH 029/137] Add/Update badge:
62d85f9d527d9bfa69691af5705cd246683482dc
---
data/dario_v0.2.1/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/dario_v0.2.1/badge.svg
diff --git a/data/dario_v0.2.1/badge.svg b/data/dario_v0.2.1/badge.svg
new file mode 100644
index 000000000..8134c30e4
--- /dev/null
+++ b/data/dario_v0.2.1/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 88.91%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 88.91%
+ 88.91%
+
+
+
+
+
+
+
\ No newline at end of file
From ac2fe29996c0c1b7d28b41f1e2dd7e92e60aecbe Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 25 Apr 2025 11:20:15 +0000
Subject: [PATCH 030/137] Add/Update badge:
7746131aba007b69770bb8c920f8e7a1888f4898
---
data/messagepassing/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/messagepassing/badge.svg b/data/messagepassing/badge.svg
index 77546eb14..b91510bf5 100644
--- a/data/messagepassing/badge.svg
+++ b/data/messagepassing/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 87.24%
+
+ Test Coverage: 86.36%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 87.24%
- 87.24%
+ 86.36%
+ 86.36%
From 1e7bbc6588cf6751685906ef8228af94cfb34e2e Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 5 May 2025 08:16:04 +0000
Subject: [PATCH 031/137] Add/Update badge:
3ca7815ed29bdbd40d73a69a7bd1b2d72f3e5627
---
data/fix_link/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/fix_link/badge.svg
diff --git a/data/fix_link/badge.svg b/data/fix_link/badge.svg
new file mode 100644
index 000000000..8134c30e4
--- /dev/null
+++ b/data/fix_link/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 88.91%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 88.91%
+ 88.91%
+
+
+
+
+
+
+
\ No newline at end of file
From f3834bdc3c8e48d4932605f2f475e361ea12d450 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 12 May 2025 04:02:14 +0000
Subject: [PATCH 032/137] Add/Update badge:
81fa65d50016123f0c0cc950de446461191294b1
---
data/messagepassing/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/messagepassing/badge.svg b/data/messagepassing/badge.svg
index b91510bf5..a0e9d473e 100644
--- a/data/messagepassing/badge.svg
+++ b/data/messagepassing/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 86.36%
+
+ Test Coverage: 86.49%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 86.36%
- 86.36%
+ 86.49%
+ 86.49%
From b4b30038faee142d6b3f135eb8e60406fabe637c Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 13 May 2025 12:54:07 +0000
Subject: [PATCH 033/137] Add/Update badge:
e347a6f3664875caa7b4dc6bf73043e126f48d91
---
data/refinement/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/refinement/badge.svg
diff --git a/data/refinement/badge.svg b/data/refinement/badge.svg
new file mode 100644
index 000000000..26bd426c8
--- /dev/null
+++ b/data/refinement/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 89.04%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 89.04%
+ 89.04%
+
+
+
+
+
+
+
\ No newline at end of file
From bec5fbc6c49ff4e89d7635386b959ffffb881d31 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 14 May 2025 12:28:09 +0000
Subject: [PATCH 034/137] Add/Update badge:
a5d5a60aa24f07daa08a43e36187553ede09aecc
---
data/collector/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/collector/badge.svg
diff --git a/data/collector/badge.svg b/data/collector/badge.svg
new file mode 100644
index 000000000..2d0153dbd
--- /dev/null
+++ b/data/collector/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 88.86%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 88.86%
+ 88.86%
+
+
+
+
+
+
+
\ No newline at end of file
From 03acd9ccfb5ae443e499380c8d964344d2a37c1b Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 14 May 2025 12:48:23 +0000
Subject: [PATCH 035/137] Add/Update badge:
a129bb5bf2f15ebedacd37cf3a5463a3115ecf12
---
data/refinement/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/refinement/badge.svg b/data/refinement/badge.svg
index 26bd426c8..066da159f 100644
--- a/data/refinement/badge.svg
+++ b/data/refinement/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 89.04%
+
+ Test Coverage: 88.96%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 89.04%
- 89.04%
+ 88.96%
+ 88.96%
From 9262ae2555430e9b5b809deed751cb6a4cf88d9a Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 14 May 2025 13:48:01 +0000
Subject: [PATCH 036/137] Add/Update badge:
b09d8102baa8ddeb75b5488deb5454baf827cb4c
---
data/refinement/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/refinement/badge.svg b/data/refinement/badge.svg
index 066da159f..4a7843446 100644
--- a/data/refinement/badge.svg
+++ b/data/refinement/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 88.96%
+
+ Test Coverage: 88.98%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 88.96%
- 88.96%
+ 88.98%
+ 88.98%
From 17c516fa92cc95797dd529c12815cb8f74ebf79e Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 14 May 2025 16:13:10 +0000
Subject: [PATCH 037/137] Add/Update badge:
478f74f545f48fefd41176cb6900f6c21b38ea61
---
data/refinement/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/refinement/badge.svg b/data/refinement/badge.svg
index 4a7843446..066da159f 100644
--- a/data/refinement/badge.svg
+++ b/data/refinement/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 88.98%
+
+ Test Coverage: 88.96%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 88.98%
- 88.98%
+ 88.96%
+ 88.96%
From 3411878c0721ab82007c5494296e2aa2b61b2558 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 14 May 2025 19:37:41 +0000
Subject: [PATCH 038/137] Add/Update badge:
fe868fb4694f74ba959d3e59af3974625664d7f8
---
data/collector/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/collector/badge.svg b/data/collector/badge.svg
index 2d0153dbd..897f57a04 100644
--- a/data/collector/badge.svg
+++ b/data/collector/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 88.86%
+
+ Test Coverage: 88.89%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 88.86%
- 88.86%
+ 88.89%
+ 88.89%
From ab68c72ad5c00b192899d92eda46ec8635e4365c Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 15 May 2025 12:25:33 +0000
Subject: [PATCH 039/137] Add/Update badge:
77c56c4051eb565801f0575e2a0582be84662b1a
---
data/collector/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/collector/badge.svg b/data/collector/badge.svg
index 897f57a04..3ae304691 100644
--- a/data/collector/badge.svg
+++ b/data/collector/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 88.89%
+
+ Test Coverage: 88.83%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 88.89%
- 88.89%
+ 88.83%
+ 88.83%
From 78003a0f1c48a200bf67474cd3bbf9d1d8dcd34a Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 15 May 2025 12:33:51 +0000
Subject: [PATCH 040/137] Add/Update badge:
8feb078ba762fa00d611a7fb98ef351dfe112187
---
data/refinement/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/refinement/badge.svg b/data/refinement/badge.svg
index 066da159f..cf762a18c 100644
--- a/data/refinement/badge.svg
+++ b/data/refinement/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 88.96%
+
+ Test Coverage: 88.97%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 88.96%
- 88.96%
+ 88.97%
+ 88.97%
From 0f9dd8c9531a54c466f75ff87e61d9bb92692ccc Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 29 May 2025 21:17:16 +0000
Subject: [PATCH 041/137] Add/Update badge:
3b9f3ca4111449b74d2cd7357e3677ad8ea972f6
---
data/messagepassing/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/messagepassing/badge.svg b/data/messagepassing/badge.svg
index a0e9d473e..140fa974a 100644
--- a/data/messagepassing/badge.svg
+++ b/data/messagepassing/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 86.49%
+
+ Test Coverage: 86.59%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 86.49%
- 86.49%
+ 86.59%
+ 86.59%
From 4d514550f592f5ffe1b83517f08e186000092f51 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 30 May 2025 08:53:30 +0000
Subject: [PATCH 042/137] Add/Update badge:
088789db1c1fcab73a10c24cbf587077984ef063
---
data/dev/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dev/badge.svg b/data/dev/badge.svg
index 8134c30e4..7718b0bd9 100644
--- a/data/dev/badge.svg
+++ b/data/dev/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 88.91%
+
+ Test Coverage: 88.90%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 88.91%
- 88.91%
+ 88.90%
+ 88.90%
From bf13138e20ac99ed67c4e752a16223d7c3e67e15 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 30 May 2025 09:01:05 +0000
Subject: [PATCH 043/137] Add/Update badge:
7ad580a438bbf5ddba96285e51b002ae583b91cc
---
data/messagepassing/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/messagepassing/badge.svg b/data/messagepassing/badge.svg
index 140fa974a..8c6e5d641 100644
--- a/data/messagepassing/badge.svg
+++ b/data/messagepassing/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 86.59%
+
+ Test Coverage: 89.20%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 86.59%
- 86.59%
+ 89.20%
+ 89.20%
From f0bfb9e5b4136195ef25b405f933245812bf1b2d Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 30 May 2025 11:03:58 +0000
Subject: [PATCH 044/137] Add/Update badge:
3361080df288edd161e05cfa641eb1dd8b60fe63
---
data/fix_collector/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/fix_collector/badge.svg
diff --git a/data/fix_collector/badge.svg b/data/fix_collector/badge.svg
new file mode 100644
index 000000000..2d0153dbd
--- /dev/null
+++ b/data/fix_collector/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 88.86%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 88.86%
+ 88.86%
+
+
+
+
+
+
+
\ No newline at end of file
From e4dca34ae654dd0d7ca4f896f909a48913f178e8 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 30 May 2025 12:10:10 +0000
Subject: [PATCH 045/137] Add/Update badge:
055fbbf592ec03fdd8755f0d4841bfb465bd514b
---
data/messagepassing/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/messagepassing/badge.svg b/data/messagepassing/badge.svg
index 8c6e5d641..dd5a19cd6 100644
--- a/data/messagepassing/badge.svg
+++ b/data/messagepassing/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 89.20%
+
+ Test Coverage: 89.21%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 89.20%
- 89.20%
+ 89.21%
+ 89.21%
From 6a132a6a4d61307b441f87325a7e2a8856562bb6 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 30 May 2025 12:21:13 +0000
Subject: [PATCH 046/137] Add/Update badge:
81b1f3d8e46a5c3c57af85df5fbb6cb13665a3e6
---
data/dev/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dev/badge.svg b/data/dev/badge.svg
index 7718b0bd9..2d0153dbd 100644
--- a/data/dev/badge.svg
+++ b/data/dev/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 88.90%
+
+ Test Coverage: 88.86%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 88.90%
- 88.90%
+ 88.86%
+ 88.86%
From 996342ac48de921b9585645a621560ae25d25b88 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Sun, 1 Jun 2025 08:30:52 +0000
Subject: [PATCH 047/137] Add/Update badge:
e8d8f71f488bdbf8c6902ced253161564038e939
---
data/messagepassing/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/messagepassing/badge.svg b/data/messagepassing/badge.svg
index dd5a19cd6..536fd550d 100644
--- a/data/messagepassing/badge.svg
+++ b/data/messagepassing/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 89.21%
+
+ Test Coverage: 89.18%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 89.21%
- 89.21%
+ 89.18%
+ 89.18%
From c3768a8333d7df95a5f453bdbb3a6c18eb167df6 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Sun, 1 Jun 2025 11:37:16 +0000
Subject: [PATCH 048/137] Add/Update badge:
2667917c3f11432ef1bd121b17508fc0b9711cb9
---
data/messagepassing/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/messagepassing/badge.svg b/data/messagepassing/badge.svg
index 536fd550d..514e9303c 100644
--- a/data/messagepassing/badge.svg
+++ b/data/messagepassing/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 89.18%
+
+ Test Coverage: 89.19%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 89.18%
- 89.18%
+ 89.19%
+ 89.19%
From ae4e7d1851b88b64e29ad0cb0352731e9b54246e Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Sun, 1 Jun 2025 16:27:34 +0000
Subject: [PATCH 049/137] Add/Update badge:
5be2eb63c4d953110bc7ae5281b4984f8b6a1b53
---
data/dev/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dev/badge.svg b/data/dev/badge.svg
index 2d0153dbd..514e9303c 100644
--- a/data/dev/badge.svg
+++ b/data/dev/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 88.86%
+
+ Test Coverage: 89.19%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 88.86%
- 88.86%
+ 89.19%
+ 89.19%
From 40de5742326487e61522591e4cb1ae0a16c1d5bd Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 11 Jun 2025 13:22:35 +0000
Subject: [PATCH 050/137] Add/Update badge:
a2f5128bc8207a4f7ff1bdd7a2063f2b6038a4ed
---
data/dev/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dev/badge.svg b/data/dev/badge.svg
index 514e9303c..a5634d960 100644
--- a/data/dev/badge.svg
+++ b/data/dev/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 89.19%
+
+ Test Coverage: 89.13%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 89.19%
- 89.19%
+ 89.13%
+ 89.13%
From 3386691df16d5a6b9c7cf5d392b4ca2ba3ac4727 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 11 Jun 2025 15:58:08 +0000
Subject: [PATCH 051/137] Add/Update badge:
8523e81129a75c7d22abb22dfd04afca84f0b988
---
data/dev/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dev/badge.svg b/data/dev/badge.svg
index a5634d960..536fd550d 100644
--- a/data/dev/badge.svg
+++ b/data/dev/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 89.13%
+
+ Test Coverage: 89.18%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 89.13%
- 89.13%
+ 89.18%
+ 89.18%
From 1802e64483a441d5064e90f7b355f8499c8323ee Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 4 Jul 2025 14:53:14 +0000
Subject: [PATCH 052/137] Add/Update badge:
4ac80fcd69091562a47ab090cadacc341586af23
---
data/readme_fix/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/readme_fix/badge.svg
diff --git a/data/readme_fix/badge.svg b/data/readme_fix/badge.svg
new file mode 100644
index 000000000..92a1ddbeb
--- /dev/null
+++ b/data/readme_fix/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 89.34%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 89.34%
+ 89.34%
+
+
+
+
+
+
+
\ No newline at end of file
From 0374870f8f1fd27fe542998aa64da8226ff8effb Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 4 Jul 2025 15:33:46 +0000
Subject: [PATCH 053/137] Add/Update badge:
216cf8fd72236936196af4a7c72b574bb7195ca2
---
data/fix_check_consistency/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/fix_check_consistency/badge.svg
diff --git a/data/fix_check_consistency/badge.svg b/data/fix_check_consistency/badge.svg
new file mode 100644
index 000000000..cbeacf26f
--- /dev/null
+++ b/data/fix_check_consistency/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 89.31%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 89.31%
+ 89.31%
+
+
+
+
+
+
+
\ No newline at end of file
From 05a0b5de8f048a6d84cc36bef551603c55bb18d4 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 29 Jul 2025 11:57:05 +0000
Subject: [PATCH 054/137] Add/Update badge:
3c0627ab94e1ef3e668c8f2bfc7c6394577a4ef9
---
data/fix_zoo/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/fix_zoo/badge.svg
diff --git a/data/fix_zoo/badge.svg b/data/fix_zoo/badge.svg
new file mode 100644
index 000000000..3ce178fcd
--- /dev/null
+++ b/data/fix_zoo/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 89.41%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 89.41%
+ 89.41%
+
+
+
+
+
+
+
\ No newline at end of file
From 9b333bbc1512769269027c18f75cb5106234a6e5 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 29 Jul 2025 12:08:19 +0000
Subject: [PATCH 055/137] Add/Update badge:
6266dc5050cc190319e594a27207961b5ea191fe
---
data/fix_zoo/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/fix_zoo/badge.svg b/data/fix_zoo/badge.svg
index 3ce178fcd..01ef0b4eb 100644
--- a/data/fix_zoo/badge.svg
+++ b/data/fix_zoo/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 89.41%
+
+ Test Coverage: 89.40%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 89.41%
- 89.41%
+ 89.40%
+ 89.40%
From 08fa571b6e99decf2cfd5e02828ad8753d95f7cd Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 29 Jul 2025 13:01:41 +0000
Subject: [PATCH 056/137] Add/Update badge:
ed12b390c9127c0ac11217a05a30f31ef6fd0755
---
data/fix_zoo/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/fix_zoo/badge.svg b/data/fix_zoo/badge.svg
index 01ef0b4eb..4b14516c9 100644
--- a/data/fix_zoo/badge.svg
+++ b/data/fix_zoo/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 89.40%
+
+ Test Coverage: 89.14%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 89.40%
- 89.40%
+ 89.14%
+ 89.14%
From 59ea53de29842a80c10d5b64a462d6b7c1aad478 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 29 Jul 2025 13:28:27 +0000
Subject: [PATCH 057/137] Add/Update badge:
f4606707d5daccb6fa042e8a0194e82c6a3279cd
---
data/fix_zoo/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/fix_zoo/badge.svg b/data/fix_zoo/badge.svg
index 4b14516c9..3ce178fcd 100644
--- a/data/fix_zoo/badge.svg
+++ b/data/fix_zoo/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 89.14%
+
+ Test Coverage: 89.41%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 89.14%
- 89.14%
+ 89.41%
+ 89.41%
From 13dec6356518d0b16715683d9ea64e0a80054528 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 29 Jul 2025 14:42:10 +0000
Subject: [PATCH 058/137] Add/Update badge:
aa17722f9935570d9369837913c5c0394a3112ee
---
data/fix_zoo/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/fix_zoo/badge.svg b/data/fix_zoo/badge.svg
index 3ce178fcd..9430915f2 100644
--- a/data/fix_zoo/badge.svg
+++ b/data/fix_zoo/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 89.41%
+
+ Test Coverage: 89.42%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 89.41%
- 89.41%
+ 89.42%
+ 89.42%
From 464c9e3f680cc367fd8bc1b30e9e70a66db06a09 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 1 Aug 2025 13:55:00 +0000
Subject: [PATCH 059/137] Add/Update badge:
f1f5d241eb19f093b58c8911dffcdd3295cbd5ce
---
data/dev/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dev/badge.svg b/data/dev/badge.svg
index 536fd550d..897cb2824 100644
--- a/data/dev/badge.svg
+++ b/data/dev/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 89.18%
+
+ Test Coverage: 89.43%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 89.18%
- 89.18%
+ 89.43%
+ 89.43%
From 44c8d4da5af6ef0e4e48070bc9616a3d65687097 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 8 Sep 2025 09:02:44 +0000
Subject: [PATCH 060/137] Add/Update badge:
c87d4348839c8e68241b660e4775ad4201c1d0c4
---
data/compile_fix/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/compile_fix/badge.svg
diff --git a/data/compile_fix/badge.svg b/data/compile_fix/badge.svg
new file mode 100644
index 000000000..8e4a8cb82
--- /dev/null
+++ b/data/compile_fix/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 89.45%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 89.45%
+ 89.45%
+
+
+
+
+
+
+
\ No newline at end of file
From 16c573ddb453f156c7e4caeaa374ba5ea3bdc153 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 8 Sep 2025 12:39:08 +0000
Subject: [PATCH 061/137] Add/Update badge:
742a566ce3d3c40e0c7399bb6295b93c1ef33153
---
data/equation_update/badge.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 data/equation_update/badge.svg
diff --git a/data/equation_update/badge.svg b/data/equation_update/badge.svg
new file mode 100644
index 000000000..897cb2824
--- /dev/null
+++ b/data/equation_update/badge.svg
@@ -0,0 +1,24 @@
+
+ Test Coverage: 89.43%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 89.43%
+ 89.43%
+
+
+
+
+
+
+
\ No newline at end of file
From a25879cce5d9bd596999a24717e56d2ea10d40d2 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 8 Sep 2025 13:11:41 +0000
Subject: [PATCH 062/137] Add/Update badge:
9df7f2a7b2ac40897741fd0f7236da494567218f
---
data/equation_update/badge.svg | 14 +++++---------
1 file changed, 5 insertions(+), 9 deletions(-)
diff --git a/data/equation_update/badge.svg b/data/equation_update/badge.svg
index 897cb2824..a2c54e288 100644
--- a/data/equation_update/badge.svg
+++ b/data/equation_update/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 89.43%
+
+ Test Coverage: 90.24%
@@ -7,18 +7,14 @@
-
+
Test Coverage
Test Coverage
- 89.43%
- 89.43%
+ 90.24%
+ 90.24%
-
-
-
-
\ No newline at end of file
From dc7a8437db0293a9b3de45b27f3d4363ecb76ce0 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 9 Sep 2025 15:27:50 +0000
Subject: [PATCH 063/137] Add/Update badge:
6be3953cb986a6c59f8abef54ff36aa788717a1d
---
data/data_normalizer/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/data_normalizer/badge.svg
diff --git a/data/data_normalizer/badge.svg b/data/data_normalizer/badge.svg
new file mode 100644
index 000000000..a59ffd5d5
--- /dev/null
+++ b/data/data_normalizer/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 90.54%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 90.54%
+ 90.54%
+
+
+
\ No newline at end of file
From 50e6ddb67009b102c3f4d0ee0e6d7c5b26cd16f5 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 10 Sep 2025 09:25:57 +0000
Subject: [PATCH 064/137] Add/Update badge:
0879f0c7c4ead0c0217c0999b667043992143f31
---
data/graph_dataset_fix/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/graph_dataset_fix/badge.svg
diff --git a/data/graph_dataset_fix/badge.svg b/data/graph_dataset_fix/badge.svg
new file mode 100644
index 000000000..a2c54e288
--- /dev/null
+++ b/data/graph_dataset_fix/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 90.24%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 90.24%
+ 90.24%
+
+
+
\ No newline at end of file
From be37827ca71d4e62bac550ee0f01edc3e940dc62 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 10 Sep 2025 13:43:13 +0000
Subject: [PATCH 065/137] Add/Update badge:
02149edd31d5c09d977db2c60d6a905adcaa1c85
---
data/dev/badge.svg | 14 +++++---------
1 file changed, 5 insertions(+), 9 deletions(-)
diff --git a/data/dev/badge.svg b/data/dev/badge.svg
index 897cb2824..a2c54e288 100644
--- a/data/dev/badge.svg
+++ b/data/dev/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 89.43%
+
+ Test Coverage: 90.24%
@@ -7,18 +7,14 @@
-
+
Test Coverage
Test Coverage
- 89.43%
- 89.43%
+ 90.24%
+ 90.24%
-
-
-
-
\ No newline at end of file
From 060c0eca950e1d4c9be860f59d3b77cc8bdae678 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 10 Sep 2025 14:53:26 +0000
Subject: [PATCH 066/137] Add/Update badge:
f15ecefa42c3deb5b6de614fd976cd3ea07b3340
---
data/tutorial22/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/tutorial22/badge.svg
diff --git a/data/tutorial22/badge.svg b/data/tutorial22/badge.svg
new file mode 100644
index 000000000..a2c54e288
--- /dev/null
+++ b/data/tutorial22/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 90.24%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 90.24%
+ 90.24%
+
+
+
\ No newline at end of file
From 9f06c173e737ea4b7b0f23a47826755569199643 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 11 Sep 2025 13:54:07 +0000
Subject: [PATCH 067/137] Add/Update badge:
8cc2d06adde51dfd14c818e54f2fd0e87bbf98d5
---
data/dev/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dev/badge.svg b/data/dev/badge.svg
index a2c54e288..dbabe7cec 100644
--- a/data/dev/badge.svg
+++ b/data/dev/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 90.24%
+
+ Test Coverage: 90.35%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 90.24%
- 90.24%
+ 90.35%
+ 90.35%
\ No newline at end of file
From 80aa1b6a2f54a3ff645a8cbbdcfa328d8874a478 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 11 Sep 2025 14:49:43 +0000
Subject: [PATCH 068/137] Add/Update badge:
3446f95da90562aebce6d182d18ba75398068bdc
---
data/data_normalizer/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/data_normalizer/badge.svg b/data/data_normalizer/badge.svg
index a59ffd5d5..8f43ff23f 100644
--- a/data/data_normalizer/badge.svg
+++ b/data/data_normalizer/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 90.54%
+
+ Test Coverage: 90.68%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 90.54%
- 90.54%
+ 90.68%
+ 90.68%
\ No newline at end of file
From cf7c40032d4efefe4a867a7da96489adfe5b6626 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Sat, 13 Sep 2025 12:09:39 +0000
Subject: [PATCH 069/137] Add/Update badge:
f8a01b72626ee9fb59627c11cfc09c689497d04f
---
data/governance/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/governance/badge.svg
diff --git a/data/governance/badge.svg b/data/governance/badge.svg
new file mode 100644
index 000000000..dbabe7cec
--- /dev/null
+++ b/data/governance/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 90.35%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 90.35%
+ 90.35%
+
+
+
\ No newline at end of file
From 0d9a52b373de1095757a81a0296d73e38ddc7cfa Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Sun, 14 Sep 2025 14:52:52 +0000
Subject: [PATCH 070/137] Add/Update badge:
a29a62d7764c7253828b5b2e103b160f88d088a0
---
data/tutorial22/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/tutorial22/badge.svg b/data/tutorial22/badge.svg
index a2c54e288..dbabe7cec 100644
--- a/data/tutorial22/badge.svg
+++ b/data/tutorial22/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 90.24%
+
+ Test Coverage: 90.35%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 90.24%
- 90.24%
+ 90.35%
+ 90.35%
\ No newline at end of file
From 6924ee109b0a9c4decb8298b1b1c827ac65c1ba4 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Sun, 14 Sep 2025 16:58:39 +0000
Subject: [PATCH 071/137] Add/Update badge:
664f054ef1d6f6f455ebb3e2c186fbb41b28fb81
---
data/fix_tut_exporter/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/fix_tut_exporter/badge.svg
diff --git a/data/fix_tut_exporter/badge.svg b/data/fix_tut_exporter/badge.svg
new file mode 100644
index 000000000..dbabe7cec
--- /dev/null
+++ b/data/fix_tut_exporter/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 90.35%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 90.35%
+ 90.35%
+
+
+
\ No newline at end of file
From 5085942968e74014d34e8be6b563a167d41db3cb Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 15 Sep 2025 11:42:18 +0000
Subject: [PATCH 072/137] Add/Update badge:
f7e697e6b6b5c7b7e53a0584009c591ba4610c78
---
data/data_normalizer/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/data_normalizer/badge.svg b/data/data_normalizer/badge.svg
index 8f43ff23f..ddd539966 100644
--- a/data/data_normalizer/badge.svg
+++ b/data/data_normalizer/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 90.68%
+
+ Test Coverage: 90.50%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 90.68%
- 90.68%
+ 90.50%
+ 90.50%
\ No newline at end of file
From 1780315b3ba62c945f1ed4e20f31d38f8a3c44ad Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 15 Sep 2025 11:58:44 +0000
Subject: [PATCH 073/137] Add/Update badge:
b70a2fe0f7d0ed012c52390aadf46c5ed524c5cd
---
data/data_normalizer/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/data_normalizer/badge.svg b/data/data_normalizer/badge.svg
index ddd539966..3096283b1 100644
--- a/data/data_normalizer/badge.svg
+++ b/data/data_normalizer/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 90.50%
+
+ Test Coverage: 90.67%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 90.50%
- 90.50%
+ 90.67%
+ 90.67%
\ No newline at end of file
From d08bc393f0995c3a201ac54f0eb0855b39f15c3f Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 16 Sep 2025 12:57:48 +0000
Subject: [PATCH 074/137] Add/Update badge:
91f3602030e6d9dfde69fe0c651820859780ac8d
---
data/data_normalizer/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/data_normalizer/badge.svg b/data/data_normalizer/badge.svg
index 3096283b1..b05ee78ea 100644
--- a/data/data_normalizer/badge.svg
+++ b/data/data_normalizer/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 90.67%
+
+ Test Coverage: 90.65%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 90.67%
- 90.67%
+ 90.65%
+ 90.65%
\ No newline at end of file
From c38c16a7f58b3c3e5bbe57e44263503778b56062 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 16 Sep 2025 15:09:54 +0000
Subject: [PATCH 075/137] Add/Update badge:
828184f3f8c6a40b70d3ebf52d7024e955ff3265
---
data/data_normalizer/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/data_normalizer/badge.svg b/data/data_normalizer/badge.svg
index b05ee78ea..3096283b1 100644
--- a/data/data_normalizer/badge.svg
+++ b/data/data_normalizer/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 90.65%
+
+ Test Coverage: 90.67%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 90.65%
- 90.65%
+ 90.67%
+ 90.67%
\ No newline at end of file
From f7ff17130f680770097eaa83fb80d134bd483cbb Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 16 Sep 2025 15:36:03 +0000
Subject: [PATCH 076/137] Add/Update badge:
8195f818fc92230e13f32703be7869051131f844
---
data/dev/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dev/badge.svg b/data/dev/badge.svg
index dbabe7cec..3096283b1 100644
--- a/data/dev/badge.svg
+++ b/data/dev/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 90.35%
+
+ Test Coverage: 90.67%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 90.35%
- 90.35%
+ 90.67%
+ 90.67%
\ No newline at end of file
From ea7b036826232c128e9429c8cafef4c2c2000a61 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 18 Sep 2025 11:15:02 +0000
Subject: [PATCH 077/137] Add/Update badge:
92aba816f116898b67390c948f1a0accdb99070d
---
data/dev/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dev/badge.svg b/data/dev/badge.svg
index 3096283b1..4d43ed18c 100644
--- a/data/dev/badge.svg
+++ b/data/dev/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 90.67%
+
+ Test Coverage: 90.74%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 90.67%
- 90.67%
+ 90.74%
+ 90.74%
\ No newline at end of file
From 4cfebef89a85c1ae12c42d2a71ce70331bfd8953 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 18 Sep 2025 12:31:38 +0000
Subject: [PATCH 078/137] Add/Update badge:
b48c18d6ab8e80df3198f08af5b124ab65774f4e
---
data/fix_pod/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/fix_pod/badge.svg
diff --git a/data/fix_pod/badge.svg b/data/fix_pod/badge.svg
new file mode 100644
index 000000000..4d43ed18c
--- /dev/null
+++ b/data/fix_pod/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 90.74%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 90.74%
+ 90.74%
+
+
+
\ No newline at end of file
From 052201f7d7f6c2d1d2c454a8baf8eda4a473ac47 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 18 Sep 2025 15:38:47 +0000
Subject: [PATCH 079/137] Add/Update badge:
8483a0583239cb2e84f5c9e147631efe7679f4b8
---
data/governance/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/governance/badge.svg b/data/governance/badge.svg
index dbabe7cec..4d43ed18c 100644
--- a/data/governance/badge.svg
+++ b/data/governance/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 90.35%
+
+ Test Coverage: 90.74%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 90.35%
- 90.35%
+ 90.74%
+ 90.74%
\ No newline at end of file
From 795ffc5757e00541438d8c90e1991ae0c8cf25fd Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 22 Sep 2025 09:48:37 +0000
Subject: [PATCH 080/137] Add/Update badge:
11472737bfb0e4ae5bc809b240a1031289182f6d
---
data/dario-coscia-patch-1/badge.svg | 14 +++++---------
1 file changed, 5 insertions(+), 9 deletions(-)
diff --git a/data/dario-coscia-patch-1/badge.svg b/data/dario-coscia-patch-1/badge.svg
index 8134c30e4..4d43ed18c 100644
--- a/data/dario-coscia-patch-1/badge.svg
+++ b/data/dario-coscia-patch-1/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 88.91%
+
+ Test Coverage: 90.74%
@@ -7,18 +7,14 @@
-
+
Test Coverage
Test Coverage
- 88.91%
- 88.91%
+ 90.74%
+ 90.74%
-
-
-
-
\ No newline at end of file
From 06eae027dc955f59f1b9a5c5afd5d57b103dde0c Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 22 Sep 2025 13:12:49 +0000
Subject: [PATCH 081/137] Add/Update badge:
ef36a4a7bed0c67081426dbb603f22d200032da7
---
data/dev/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dev/badge.svg b/data/dev/badge.svg
index 4d43ed18c..d789e95d5 100644
--- a/data/dev/badge.svg
+++ b/data/dev/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 90.74%
+
+ Test Coverage: 91.16%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 90.74%
- 90.74%
+ 91.16%
+ 91.16%
\ No newline at end of file
From 00f88d5eacd9e41c46967591ee3c1861135cec21 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 22 Sep 2025 14:11:16 +0000
Subject: [PATCH 082/137] Add/Update badge:
05d75fa03ecf840739ae68da1c420689cf601ad0
---
data/dario-coscia-patch-1/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dario-coscia-patch-1/badge.svg b/data/dario-coscia-patch-1/badge.svg
index 4d43ed18c..d789e95d5 100644
--- a/data/dario-coscia-patch-1/badge.svg
+++ b/data/dario-coscia-patch-1/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 90.74%
+
+ Test Coverage: 91.16%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 90.74%
- 90.74%
+ 91.16%
+ 91.16%
\ No newline at end of file
From d7b7c14e1d80dd5eff97d940b25b5ff4558f09fb Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 22 Sep 2025 14:31:03 +0000
Subject: [PATCH 083/137] Add/Update badge:
80c2f88a2ee98441473c026b308e362d881c1646
---
data/0.2.3-fix-codacy/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/0.2.3-fix-codacy/badge.svg
diff --git a/data/0.2.3-fix-codacy/badge.svg b/data/0.2.3-fix-codacy/badge.svg
new file mode 100644
index 000000000..d789e95d5
--- /dev/null
+++ b/data/0.2.3-fix-codacy/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.16%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.16%
+ 91.16%
+
+
+
\ No newline at end of file
From 187ae6be6d29aa88087bd1b7cb177b9f4b8205b5 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 23 Sep 2025 15:34:31 +0000
Subject: [PATCH 084/137] Add/Update badge:
f2d614d38dfae2a2e3aec45f2f9109232465d357
---
data/governance/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/governance/badge.svg b/data/governance/badge.svg
index 4d43ed18c..d789e95d5 100644
--- a/data/governance/badge.svg
+++ b/data/governance/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 90.74%
+
+ Test Coverage: 91.16%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 90.74%
- 90.74%
+ 91.16%
+ 91.16%
\ No newline at end of file
From 35a9cb54029f0ed1ac3bfd8777424d5c489fc5b8 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 25 Sep 2025 09:58:07 +0000
Subject: [PATCH 085/137] Add/Update badge:
2438e67400edf192e61e43d2ac010ef1c0e9dbb2
---
data/fix_tut_exporter/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/fix_tut_exporter/badge.svg b/data/fix_tut_exporter/badge.svg
index dbabe7cec..d789e95d5 100644
--- a/data/fix_tut_exporter/badge.svg
+++ b/data/fix_tut_exporter/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 90.35%
+
+ Test Coverage: 91.16%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 90.35%
- 90.35%
+ 91.16%
+ 91.16%
\ No newline at end of file
From 5402612d8938a9709e704a2a1e4260ce7ceec71a Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 10 Oct 2025 10:42:07 +0000
Subject: [PATCH 086/137] Add/Update badge:
d0c5321d40adb24223bd78c84231450d1ae1d1e3
---
data/optim/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/optim/badge.svg
diff --git a/data/optim/badge.svg b/data/optim/badge.svg
new file mode 100644
index 000000000..f56b72ca0
--- /dev/null
+++ b/data/optim/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.24%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.24%
+ 91.24%
+
+
+
\ No newline at end of file
From 0bf7b9e69b32eb4d46494b65a06b6eefb6a09950 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 10 Oct 2025 11:48:50 +0000
Subject: [PATCH 087/137] Add/Update badge:
1a13506260fc92767a032484e73149d952062f04
---
data/optim/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/optim/badge.svg b/data/optim/badge.svg
index f56b72ca0..82d6adce9 100644
--- a/data/optim/badge.svg
+++ b/data/optim/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 91.24%
+
+ Test Coverage: 91.22%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 91.24%
- 91.24%
+ 91.22%
+ 91.22%
\ No newline at end of file
From 77638df85811ab6625b644418804a0a0110d37a1 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 13 Oct 2025 10:42:32 +0000
Subject: [PATCH 088/137] Add/Update badge:
9d465fc6672a8cf95c82295effe7e97e833db284
---
data/ndem0-patch-1/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/ndem0-patch-1/badge.svg
diff --git a/data/ndem0-patch-1/badge.svg b/data/ndem0-patch-1/badge.svg
new file mode 100644
index 000000000..780ee18a5
--- /dev/null
+++ b/data/ndem0-patch-1/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.33%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.33%
+ 91.33%
+
+
+
\ No newline at end of file
From 6a4758199107787776e60e49e795cc9ca1873378 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 13 Oct 2025 10:49:29 +0000
Subject: [PATCH 089/137] Add/Update badge:
9d465fc6672a8cf95c82295effe7e97e833db284
---
data/test-trigger/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/test-trigger/badge.svg
diff --git a/data/test-trigger/badge.svg b/data/test-trigger/badge.svg
new file mode 100644
index 000000000..780ee18a5
--- /dev/null
+++ b/data/test-trigger/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.33%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.33%
+ 91.33%
+
+
+
\ No newline at end of file
From 4d2463552cb3a0bb1c3f277f00515d99222adafa Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 13 Oct 2025 12:36:45 +0000
Subject: [PATCH 090/137] Add/Update badge:
9d465fc6672a8cf95c82295effe7e97e833db284
---
data/fix_tut_exporter/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/fix_tut_exporter/badge.svg b/data/fix_tut_exporter/badge.svg
index d789e95d5..780ee18a5 100644
--- a/data/fix_tut_exporter/badge.svg
+++ b/data/fix_tut_exporter/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 91.16%
+
+ Test Coverage: 91.33%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 91.16%
- 91.16%
+ 91.33%
+ 91.33%
\ No newline at end of file
From 68f509951ec4ccc12359295e13ef7f23c4ebbd93 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 14 Oct 2025 15:21:35 +0000
Subject: [PATCH 091/137] Add/Update badge:
9d465fc6672a8cf95c82295effe7e97e833db284
---
data/SINDy_tutorial/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/SINDy_tutorial/badge.svg
diff --git a/data/SINDy_tutorial/badge.svg b/data/SINDy_tutorial/badge.svg
new file mode 100644
index 000000000..780ee18a5
--- /dev/null
+++ b/data/SINDy_tutorial/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.33%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.33%
+ 91.33%
+
+
+
\ No newline at end of file
From eb8234630e08f745e0449608fdc6a67bd8ff4629 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 15 Oct 2025 09:56:17 +0000
Subject: [PATCH 092/137] Add/Update badge:
9d465fc6672a8cf95c82295effe7e97e833db284
---
data/spline/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/spline/badge.svg
diff --git a/data/spline/badge.svg b/data/spline/badge.svg
new file mode 100644
index 000000000..780ee18a5
--- /dev/null
+++ b/data/spline/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.33%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.33%
+ 91.33%
+
+
+
\ No newline at end of file
From 5730641d52c1bf214b9afc4861471b44548ca113 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 15 Oct 2025 14:31:26 +0000
Subject: [PATCH 093/137] Add/Update badge:
084428233589046b8adf6f1d3be3005b735b990b
---
data/SINDy_tutorial/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/SINDy_tutorial/badge.svg b/data/SINDy_tutorial/badge.svg
index 780ee18a5..1b1f3cf90 100644
--- a/data/SINDy_tutorial/badge.svg
+++ b/data/SINDy_tutorial/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 91.33%
+
+ Test Coverage: 91.89%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 91.33%
- 91.33%
+ 91.89%
+ 91.89%
\ No newline at end of file
From 59dd11009ae9a07da05138813979f682032164a8 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 15 Oct 2025 15:18:32 +0000
Subject: [PATCH 094/137] Add/Update badge:
084428233589046b8adf6f1d3be3005b735b990b
---
data/revert-610-spline/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/revert-610-spline/badge.svg
diff --git a/data/revert-610-spline/badge.svg b/data/revert-610-spline/badge.svg
new file mode 100644
index 000000000..1b1f3cf90
--- /dev/null
+++ b/data/revert-610-spline/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.89%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.89%
+ 91.89%
+
+
+
\ No newline at end of file
From edc53985c0607ca9d1a1ccc2f215faa6c1302817 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 16 Oct 2025 09:57:41 +0000
Subject: [PATCH 095/137] Add/Update badge:
df4ea64c747be8a5d0dece65e1040209aacdb9f3
---
data/new_python_version/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/new_python_version/badge.svg
diff --git a/data/new_python_version/badge.svg b/data/new_python_version/badge.svg
new file mode 100644
index 000000000..1b1f3cf90
--- /dev/null
+++ b/data/new_python_version/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.89%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.89%
+ 91.89%
+
+
+
\ No newline at end of file
From 5ba4b6b41c34e17e283f89adf059ffbd4dc2a041 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Sun, 19 Oct 2025 11:32:06 +0000
Subject: [PATCH 096/137] Add/Update badge:
6d7ce0e4e265c0a98daeb874b181f44fd5ac4710
---
data/dev_updates/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/dev_updates/badge.svg
diff --git a/data/dev_updates/badge.svg b/data/dev_updates/badge.svg
new file mode 100644
index 000000000..1b1f3cf90
--- /dev/null
+++ b/data/dev_updates/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.89%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.89%
+ 91.89%
+
+
+
\ No newline at end of file
From 6a298597ed5a388bbff5f31212212fb1c312dc57 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 20 Oct 2025 18:07:30 +0000
Subject: [PATCH 097/137] Add/Update badge:
6d7ce0e4e265c0a98daeb874b181f44fd5ac4710
---
data/dario-coscia-tut17fix/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/dario-coscia-tut17fix/badge.svg
diff --git a/data/dario-coscia-tut17fix/badge.svg b/data/dario-coscia-tut17fix/badge.svg
new file mode 100644
index 000000000..1b1f3cf90
--- /dev/null
+++ b/data/dario-coscia-tut17fix/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.89%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.89%
+ 91.89%
+
+
+
\ No newline at end of file
From 1a39fa4fa664b3b74dcd080bb55101c83043e7a3 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 20 Oct 2025 18:17:15 +0000
Subject: [PATCH 098/137] Add/Update badge:
6d7ce0e4e265c0a98daeb874b181f44fd5ac4710
---
data/optim/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/optim/badge.svg b/data/optim/badge.svg
index 82d6adce9..b8c345f3e 100644
--- a/data/optim/badge.svg
+++ b/data/optim/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 91.22%
+
+ Test Coverage: 91.91%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 91.22%
- 91.22%
+ 91.91%
+ 91.91%
\ No newline at end of file
From 6c17421182a8b77873a05cf3bc34d25209242b4f Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 21 Oct 2025 07:27:08 +0000
Subject: [PATCH 099/137] Add/Update badge:
822c3174967c85e89038e32c1defb9c9c80f2c79
---
data/fix_tutorial_17/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/fix_tutorial_17/badge.svg
diff --git a/data/fix_tutorial_17/badge.svg b/data/fix_tutorial_17/badge.svg
new file mode 100644
index 000000000..1b1f3cf90
--- /dev/null
+++ b/data/fix_tutorial_17/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.89%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.89%
+ 91.89%
+
+
+
\ No newline at end of file
From 8caca80d070ae2a93baa2d7b299f6d5a36d52ad2 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 21 Oct 2025 12:30:12 +0000
Subject: [PATCH 100/137] Add/Update badge:
42e993317ff9f8f28f5421b2900aefbee1d20836
---
data/fix-codacy/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/fix-codacy/badge.svg
diff --git a/data/fix-codacy/badge.svg b/data/fix-codacy/badge.svg
new file mode 100644
index 000000000..1b1f3cf90
--- /dev/null
+++ b/data/fix-codacy/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.89%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.89%
+ 91.89%
+
+
+
\ No newline at end of file
From 3bef955badc4d479c359f50aeb2019c51a8faad5 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 23 Oct 2025 10:14:51 +0000
Subject: [PATCH 101/137] Add/Update badge:
6935e0d58a86bc211e6b890b92b185087fac4f91
---
data/fix_tutorial_exporter/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/fix_tutorial_exporter/badge.svg
diff --git a/data/fix_tutorial_exporter/badge.svg b/data/fix_tutorial_exporter/badge.svg
new file mode 100644
index 000000000..1b1f3cf90
--- /dev/null
+++ b/data/fix_tutorial_exporter/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.89%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.89%
+ 91.89%
+
+
+
\ No newline at end of file
From b8905339f43325257f05debfe31bed5532ccab4e Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 27 Oct 2025 09:21:04 +0000
Subject: [PATCH 102/137] Add/Update badge:
6935e0d58a86bc211e6b890b92b185087fac4f91
---
data/fix_tutorial_exporter/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/fix_tutorial_exporter/badge.svg b/data/fix_tutorial_exporter/badge.svg
index 1b1f3cf90..b8c345f3e 100644
--- a/data/fix_tutorial_exporter/badge.svg
+++ b/data/fix_tutorial_exporter/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 91.89%
+
+ Test Coverage: 91.91%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 91.89%
- 91.89%
+ 91.91%
+ 91.91%
\ No newline at end of file
From a1a5f872a910d262741c14e3057fcb948652ee6c Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 27 Oct 2025 09:27:37 +0000
Subject: [PATCH 103/137] Add/Update badge:
6935e0d58a86bc211e6b890b92b185087fac4f91
---
data/fix_tutorial_exporter/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/fix_tutorial_exporter/badge.svg b/data/fix_tutorial_exporter/badge.svg
index b8c345f3e..1b1f3cf90 100644
--- a/data/fix_tutorial_exporter/badge.svg
+++ b/data/fix_tutorial_exporter/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 91.91%
+
+ Test Coverage: 91.89%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 91.91%
- 91.91%
+ 91.89%
+ 91.89%
\ No newline at end of file
From 51fc090e876bf9e922ea3fef345e1b267f218f2c Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 27 Oct 2025 09:52:27 +0000
Subject: [PATCH 104/137] Add/Update badge:
6935e0d58a86bc211e6b890b92b185087fac4f91
---
data/fix_tutorial_exporter/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/fix_tutorial_exporter/badge.svg b/data/fix_tutorial_exporter/badge.svg
index 1b1f3cf90..b8c345f3e 100644
--- a/data/fix_tutorial_exporter/badge.svg
+++ b/data/fix_tutorial_exporter/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 91.89%
+
+ Test Coverage: 91.91%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 91.89%
- 91.89%
+ 91.91%
+ 91.91%
\ No newline at end of file
From eb5bda5055c3da66a2c4f6c1f5bbd2586159ad71 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 27 Oct 2025 10:04:05 +0000
Subject: [PATCH 105/137] Add/Update badge:
6935e0d58a86bc211e6b890b92b185087fac4f91
---
data/fix_tutorial_exporter/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/fix_tutorial_exporter/badge.svg b/data/fix_tutorial_exporter/badge.svg
index b8c345f3e..1b1f3cf90 100644
--- a/data/fix_tutorial_exporter/badge.svg
+++ b/data/fix_tutorial_exporter/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 91.91%
+
+ Test Coverage: 91.89%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 91.91%
- 91.91%
+ 91.89%
+ 91.89%
\ No newline at end of file
From 6a7ec8dad5e30cefb04f09cf20a94dfccac8d8ad Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 28 Oct 2025 10:00:05 +0000
Subject: [PATCH 106/137] Add/Update badge:
256ac9d025741df9c42d1d5ab95d1434efcaf7c5
---
data/fix_problem_zoo/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/fix_problem_zoo/badge.svg
diff --git a/data/fix_problem_zoo/badge.svg b/data/fix_problem_zoo/badge.svg
new file mode 100644
index 000000000..1b1f3cf90
--- /dev/null
+++ b/data/fix_problem_zoo/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.89%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.89%
+ 91.89%
+
+
+
\ No newline at end of file
From 382c95a0579460bdba25595e81442900f33f7ee5 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 28 Oct 2025 11:37:29 +0000
Subject: [PATCH 107/137] Add/Update badge:
256ac9d025741df9c42d1d5ab95d1434efcaf7c5
---
data/compile/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/compile/badge.svg
diff --git a/data/compile/badge.svg b/data/compile/badge.svg
new file mode 100644
index 000000000..1b1f3cf90
--- /dev/null
+++ b/data/compile/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.89%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.89%
+ 91.89%
+
+
+
\ No newline at end of file
From 65bc3643b6b1a621ac52e36f674aeab87b044231 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 28 Oct 2025 11:46:52 +0000
Subject: [PATCH 108/137] Add/Update badge:
256ac9d025741df9c42d1d5ab95d1434efcaf7c5
---
data/fix_problem_zoo/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/fix_problem_zoo/badge.svg b/data/fix_problem_zoo/badge.svg
index 1b1f3cf90..b8c345f3e 100644
--- a/data/fix_problem_zoo/badge.svg
+++ b/data/fix_problem_zoo/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 91.89%
+
+ Test Coverage: 91.91%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 91.89%
- 91.89%
+ 91.91%
+ 91.91%
\ No newline at end of file
From 0867c3e37be16ecc69ddd51e3c353048d210f900 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 28 Oct 2025 12:33:14 +0000
Subject: [PATCH 109/137] Add/Update badge:
256ac9d025741df9c42d1d5ab95d1434efcaf7c5
---
data/fix_device_equation/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/fix_device_equation/badge.svg
diff --git a/data/fix_device_equation/badge.svg b/data/fix_device_equation/badge.svg
new file mode 100644
index 000000000..b8c345f3e
--- /dev/null
+++ b/data/fix_device_equation/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.91%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.91%
+ 91.91%
+
+
+
\ No newline at end of file
From d332eed8c3913f0f4e3798f26d0a3e28bd8933b9 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 28 Oct 2025 15:06:40 +0000
Subject: [PATCH 110/137] Add/Update badge:
256ac9d025741df9c42d1d5ab95d1434efcaf7c5
---
data/pr_target/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/pr_target/badge.svg
diff --git a/data/pr_target/badge.svg b/data/pr_target/badge.svg
new file mode 100644
index 000000000..1b1f3cf90
--- /dev/null
+++ b/data/pr_target/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.89%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.89%
+ 91.89%
+
+
+
\ No newline at end of file
From cb44ec07ef77c7701eb2b6d349fb2e3f20adad27 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 29 Oct 2025 09:22:16 +0000
Subject: [PATCH 111/137] Add/Update badge:
31f91fc1383d2cbcd60fed50842e6002c305d6ba
---
data/fix_problem_zoo/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/fix_problem_zoo/badge.svg b/data/fix_problem_zoo/badge.svg
index b8c345f3e..1b1f3cf90 100644
--- a/data/fix_problem_zoo/badge.svg
+++ b/data/fix_problem_zoo/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 91.91%
+
+ Test Coverage: 91.89%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 91.91%
- 91.91%
+ 91.89%
+ 91.89%
\ No newline at end of file
From d4d4eaed6b9486bde517bd1ddc6f3c29c1bbb7fa Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 29 Oct 2025 10:14:23 +0000
Subject: [PATCH 112/137] Add/Update badge:
256ac9d025741df9c42d1d5ab95d1434efcaf7c5
---
data/dario-coscia-patch-1/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dario-coscia-patch-1/badge.svg b/data/dario-coscia-patch-1/badge.svg
index d789e95d5..b8c345f3e 100644
--- a/data/dario-coscia-patch-1/badge.svg
+++ b/data/dario-coscia-patch-1/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 91.16%
+
+ Test Coverage: 91.91%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 91.16%
- 91.16%
+ 91.91%
+ 91.91%
\ No newline at end of file
From 41a969061f66de97b74fcda52f4ce9db8bd97ca4 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 29 Oct 2025 10:34:04 +0000
Subject: [PATCH 113/137] Add/Update badge:
256ac9d025741df9c42d1d5ab95d1434efcaf7c5
---
data/dario-coscia-patch-1/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dario-coscia-patch-1/badge.svg b/data/dario-coscia-patch-1/badge.svg
index b8c345f3e..1b1f3cf90 100644
--- a/data/dario-coscia-patch-1/badge.svg
+++ b/data/dario-coscia-patch-1/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 91.91%
+
+ Test Coverage: 91.89%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 91.91%
- 91.91%
+ 91.89%
+ 91.89%
\ No newline at end of file
From 7760697a4b4d0c6fa06d3d9e0e9e9fed14bc7701 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 29 Oct 2025 15:22:45 +0000
Subject: [PATCH 114/137] Add/Update badge:
c6a0d01283938804edd00e956308a517cc424190
---
data/compile/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/compile/badge.svg b/data/compile/badge.svg
index 1b1f3cf90..b8c345f3e 100644
--- a/data/compile/badge.svg
+++ b/data/compile/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 91.89%
+
+ Test Coverage: 91.91%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 91.89%
- 91.89%
+ 91.91%
+ 91.91%
\ No newline at end of file
From f0d7ac914e00e29d3e65a035fe0ac769a3dd4a5b Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 29 Oct 2025 15:42:28 +0000
Subject: [PATCH 115/137] Add/Update badge:
bae091d0cf15bd1338f099e1c11fb17207b87575
---
data/compile/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/compile/badge.svg b/data/compile/badge.svg
index b8c345f3e..5ee7d6261 100644
--- a/data/compile/badge.svg
+++ b/data/compile/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 91.91%
+
+ Test Coverage: 91.90%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 91.91%
- 91.91%
+ 91.90%
+ 91.90%
\ No newline at end of file
From d01f495d63f9616fa58dcbbf914eb281c9d62079 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 29 Oct 2025 15:47:36 +0000
Subject: [PATCH 116/137] Add/Update badge:
e98aedf077cd8262a8cd18138f97275be8ee5cf3
---
data/compile/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/compile/badge.svg b/data/compile/badge.svg
index 5ee7d6261..3afc911ec 100644
--- a/data/compile/badge.svg
+++ b/data/compile/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 91.90%
+
+ Test Coverage: 91.92%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 91.90%
- 91.90%
+ 91.92%
+ 91.92%
\ No newline at end of file
From 9434fdf098fcdb93c52286b41d1c338489ed1c82 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 6 Nov 2025 00:14:21 +0000
Subject: [PATCH 117/137] Add/Update badge:
35499a94e6b5d15372fe6c2dfc5f0f9a667eb734
---
data/logo_update/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/logo_update/badge.svg
diff --git a/data/logo_update/badge.svg b/data/logo_update/badge.svg
new file mode 100644
index 000000000..3afc911ec
--- /dev/null
+++ b/data/logo_update/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.92%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.92%
+ 91.92%
+
+
+
\ No newline at end of file
From 07d0ac8de22b2cdc268b2983afc1915ca4980055 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 6 Nov 2025 16:19:27 +0000
Subject: [PATCH 118/137] Add/Update badge:
118d34f66a5463e51a65bdb8c404d7ae683339e2
---
data/dev/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dev/badge.svg b/data/dev/badge.svg
index d789e95d5..3afc911ec 100644
--- a/data/dev/badge.svg
+++ b/data/dev/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 91.16%
+
+ Test Coverage: 91.92%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 91.16%
- 91.16%
+ 91.92%
+ 91.92%
\ No newline at end of file
From f0d3ff40e0f0a72eddf798b0d68e8e30dfa3e290 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 18 Nov 2025 15:04:05 +0000
Subject: [PATCH 119/137] Add/Update badge:
737eba62075d1e8fd1b5a11c039b85f17f71a2b0
---
data/dario_dev/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/dario_dev/badge.svg
diff --git a/data/dario_dev/badge.svg b/data/dario_dev/badge.svg
new file mode 100644
index 000000000..b8c345f3e
--- /dev/null
+++ b/data/dario_dev/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.91%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.91%
+ 91.91%
+
+
+
\ No newline at end of file
From a63a2f6911beb56a1fc026014c322fe899f55801 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 18 Nov 2025 16:15:53 +0000
Subject: [PATCH 120/137] Add/Update badge:
88080db2533023973b6dd56f3a2ea34d4f53c55d
---
data/dario_dev/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dario_dev/badge.svg b/data/dario_dev/badge.svg
index b8c345f3e..3afc911ec 100644
--- a/data/dario_dev/badge.svg
+++ b/data/dario_dev/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 91.91%
+
+ Test Coverage: 91.92%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 91.91%
- 91.91%
+ 91.92%
+ 91.92%
\ No newline at end of file
From 7d143a58db099c33e0e30acd8e8b974a2882708d Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 18 Nov 2025 16:51:11 +0000
Subject: [PATCH 121/137] Add/Update badge:
900a8b2146f58a7370591e8b8e410729b72a4169
---
data/dario-coscia-patch-1/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dario-coscia-patch-1/badge.svg b/data/dario-coscia-patch-1/badge.svg
index 1b1f3cf90..3afc911ec 100644
--- a/data/dario-coscia-patch-1/badge.svg
+++ b/data/dario-coscia-patch-1/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 91.89%
+
+ Test Coverage: 91.92%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 91.89%
- 91.89%
+ 91.92%
+ 91.92%
\ No newline at end of file
From 0bea15ff41c29b571ae2d0f56b97c4adda5b6aee Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 19 Nov 2025 16:09:45 +0000
Subject: [PATCH 122/137] Add/Update badge:
43ff8f48007bb371f2cb31d78f97aa9f70962667
---
data/tmp/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/tmp/badge.svg
diff --git a/data/tmp/badge.svg b/data/tmp/badge.svg
new file mode 100644
index 000000000..3afc911ec
--- /dev/null
+++ b/data/tmp/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.92%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.92%
+ 91.92%
+
+
+
\ No newline at end of file
From 16f5682f14ad986478d223b5e9369106d0b0d543 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 19 Nov 2025 16:15:15 +0000
Subject: [PATCH 123/137] Add/Update badge:
bd0d199fc0181a81366534ff3bc09fde8a4da325
---
data/revert-708-tmp/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/revert-708-tmp/badge.svg
diff --git a/data/revert-708-tmp/badge.svg b/data/revert-708-tmp/badge.svg
new file mode 100644
index 000000000..3afc911ec
--- /dev/null
+++ b/data/revert-708-tmp/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.92%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.92%
+ 91.92%
+
+
+
\ No newline at end of file
From ecd38300d00af3195c4694e07f03b1eac75e992d Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 24 Nov 2025 13:09:43 +0000
Subject: [PATCH 124/137] Add/Update badge:
a35390640469a3c82924e13c58bfd054ba064150
---
data/export-tutorial-9f21bfb/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/export-tutorial-9f21bfb/badge.svg
diff --git a/data/export-tutorial-9f21bfb/badge.svg b/data/export-tutorial-9f21bfb/badge.svg
new file mode 100644
index 000000000..ff7297646
--- /dev/null
+++ b/data/export-tutorial-9f21bfb/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.96%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.96%
+ 91.96%
+
+
+
\ No newline at end of file
From f2be2991448406e901a3a0d908e0e605311dc7bb Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 1 Dec 2025 14:19:05 +0000
Subject: [PATCH 125/137] Add/Update badge:
a87e007c64a7be96cba765722dd28f452f3fbe72
---
data/dario-coscia-patch-1/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dario-coscia-patch-1/badge.svg b/data/dario-coscia-patch-1/badge.svg
index 3afc911ec..4b9aaf43c 100644
--- a/data/dario-coscia-patch-1/badge.svg
+++ b/data/dario-coscia-patch-1/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 91.92%
+
+ Test Coverage: 91.88%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 91.92%
- 91.92%
+ 91.88%
+ 91.88%
\ No newline at end of file
From f9eedd849d2b9c49677552bf3638c07200235ff4 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 10 Dec 2025 14:58:48 +0000
Subject: [PATCH 126/137] Add/Update badge:
1c04c4f192a5cdbcf865ab43237e6df6874e0ce4
---
data/weighting/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/weighting/badge.svg
diff --git a/data/weighting/badge.svg b/data/weighting/badge.svg
new file mode 100644
index 000000000..3afc911ec
--- /dev/null
+++ b/data/weighting/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.92%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.92%
+ 91.92%
+
+
+
\ No newline at end of file
From 2690441274c6ad12576b1d9918d537c7926c0717 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 11 Dec 2025 11:13:55 +0000
Subject: [PATCH 127/137] Add/Update badge:
6e7e728206d6981dd4efe86c545e373173638f54
---
data/dev/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dev/badge.svg b/data/dev/badge.svg
index 3afc911ec..b8c345f3e 100644
--- a/data/dev/badge.svg
+++ b/data/dev/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 91.92%
+
+ Test Coverage: 91.91%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 91.92%
- 91.92%
+ 91.91%
+ 91.91%
\ No newline at end of file
From 7e2d089c468d320ca788686bb27c9a5b98096a74 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 11 Dec 2025 12:32:01 +0000
Subject: [PATCH 128/137] Add/Update badge:
c2114cfb2c1e9fad08d638c1fe3836f1a945480e
---
data/dev/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dev/badge.svg b/data/dev/badge.svg
index b8c345f3e..3afc911ec 100644
--- a/data/dev/badge.svg
+++ b/data/dev/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 91.91%
+
+ Test Coverage: 91.92%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 91.91%
- 91.91%
+ 91.92%
+ 91.92%
\ No newline at end of file
From 8517cf40ef5f75e670f6c726726990fad5a7636d Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 11 Dec 2025 13:10:11 +0000
Subject: [PATCH 129/137] Add/Update badge:
6d30a06839d8a711013e866f492bc06c989754f0
---
data/dev/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dev/badge.svg b/data/dev/badge.svg
index 3afc911ec..edcc14052 100644
--- a/data/dev/badge.svg
+++ b/data/dev/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 91.92%
+
+ Test Coverage: 92.90%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 91.92%
- 91.92%
+ 92.90%
+ 92.90%
\ No newline at end of file
From 21513426363308d6472d3ed7bfc6381ddcfc808e Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 12 Dec 2025 10:01:11 +0000
Subject: [PATCH 130/137] Add/Update badge:
1c5a25578f88b42a0d09b8940ce9c6c39f495b6f
---
data/dev/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dev/badge.svg b/data/dev/badge.svg
index edcc14052..fba8fcc82 100644
--- a/data/dev/badge.svg
+++ b/data/dev/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 92.90%
+
+ Test Coverage: 92.92%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 92.90%
- 92.90%
+ 92.92%
+ 92.92%
\ No newline at end of file
From 9209421a5a298e9a7c7e82befbc953e5db74a94c Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 12 Dec 2025 15:05:31 +0000
Subject: [PATCH 131/137] Add/Update badge:
09eeb18df51d9184391e7fee38efe50be4927551
---
data/ghact-tag/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/ghact-tag/badge.svg
diff --git a/data/ghact-tag/badge.svg b/data/ghact-tag/badge.svg
new file mode 100644
index 000000000..3afc911ec
--- /dev/null
+++ b/data/ghact-tag/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 91.92%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 91.92%
+ 91.92%
+
+
+
\ No newline at end of file
From 30690ea4096df16737b9b5762bdcea0ff8f51c71 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 15 Dec 2025 15:40:38 +0000
Subject: [PATCH 132/137] Add/Update badge:
8187a41d33267d6c4afc04850920ad7d87436324
---
data/dev/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dev/badge.svg b/data/dev/badge.svg
index fba8fcc82..edcc14052 100644
--- a/data/dev/badge.svg
+++ b/data/dev/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 92.92%
+
+ Test Coverage: 92.90%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 92.92%
- 92.92%
+ 92.90%
+ 92.90%
\ No newline at end of file
From 45fb1ff54063870eaf37a716a93e30ecce425c9a Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 15 Dec 2025 18:19:08 +0000
Subject: [PATCH 133/137] Add/Update badge:
e16203362fa2b63e34fea251952ab6093d9e1483
---
data/dev/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dev/badge.svg b/data/dev/badge.svg
index edcc14052..fba8fcc82 100644
--- a/data/dev/badge.svg
+++ b/data/dev/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 92.90%
+
+ Test Coverage: 92.92%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 92.90%
- 92.90%
+ 92.92%
+ 92.92%
\ No newline at end of file
From 46783132ff07e9fa9908f011aece450fb04dc928 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 16 Dec 2025 09:21:22 +0000
Subject: [PATCH 134/137] Add/Update badge:
fbd52f630419110c2a85689a869ae5daef753201
---
data/dev/badge.svg | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/dev/badge.svg b/data/dev/badge.svg
index fba8fcc82..edcc14052 100644
--- a/data/dev/badge.svg
+++ b/data/dev/badge.svg
@@ -1,5 +1,5 @@
-
- Test Coverage: 92.92%
+
+ Test Coverage: 92.90%
@@ -13,8 +13,8 @@
Test Coverage
Test Coverage
- 92.92%
- 92.92%
+ 92.90%
+ 92.90%
\ No newline at end of file
From ee0de6739dbb6142bc4423efef40083156d95a3e Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 18 Dec 2025 15:04:22 +0000
Subject: [PATCH 135/137] Add/Update badge:
9ff1340aaf40f0405771843b9ff3242661c3acf0
---
data/new-v/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/new-v/badge.svg
diff --git a/data/new-v/badge.svg b/data/new-v/badge.svg
new file mode 100644
index 000000000..edcc14052
--- /dev/null
+++ b/data/new-v/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 92.90%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 92.90%
+ 92.90%
+
+
+
\ No newline at end of file
From 36728a3bdfbd46b1f1288023cb2de365f6b42796 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 29 Dec 2025 07:59:29 +0000
Subject: [PATCH 136/137] Add/Update badge:
4f00f69dfed467fe896d81c3eb778f1a1f9f163b
---
data/0.3-workflow/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/0.3-workflow/badge.svg
diff --git a/data/0.3-workflow/badge.svg b/data/0.3-workflow/badge.svg
new file mode 100644
index 000000000..fba8fcc82
--- /dev/null
+++ b/data/0.3-workflow/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 92.92%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 92.92%
+ 92.92%
+
+
+
\ No newline at end of file
From 20cfca305e0204be8738ede5597538ee0bbbff8c Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 7 Jan 2026 09:59:47 +0000
Subject: [PATCH 137/137] Add/Update badge:
d83c3da5cb5be0a0e2237f9bdf7b73dc319d5fbe
---
data/API-mermaid/badge.svg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 data/API-mermaid/badge.svg
diff --git a/data/API-mermaid/badge.svg b/data/API-mermaid/badge.svg
new file mode 100644
index 000000000..edcc14052
--- /dev/null
+++ b/data/API-mermaid/badge.svg
@@ -0,0 +1,20 @@
+
+ Test Coverage: 92.90%
+
+
+
+
+
+
+
+
+
+
+
+ Test Coverage
+ Test Coverage
+ 92.90%
+ 92.90%
+
+
+
\ No newline at end of file