From 328a1060d2caaf2cf4aa9b8ab4814a2693b24b69 Mon Sep 17 00:00:00 2001 From: Dario Coscia <93731561+dario-coscia@users.noreply.github.com> Date: Wed, 29 Oct 2025 11:07:06 +0100 Subject: [PATCH 1/2] Add placeholder text in trainer.py --- pina/trainer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pina/trainer.py b/pina/trainer.py index 78dd77adf..9cdc3bc3c 100644 --- a/pina/trainer.py +++ b/pina/trainer.py @@ -70,6 +70,7 @@ def __init__( Trainer API `_. """ + ttt # check consistency for init types self._check_input_consistency( solver=solver, From bc66a6d7b2038f8a799f6d14b0f2d89b096a7243 Mon Sep 17 00:00:00 2001 From: Dario Coscia <93731561+dario-coscia@users.noreply.github.com> Date: Wed, 29 Oct 2025 11:27:37 +0100 Subject: [PATCH 2/2] Insert placeholder in solver initialization Added a placeholder 'tttt' in the solver initialization. --- pina/solver/solver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pina/solver/solver.py b/pina/solver/solver.py index 6948ec664..a9da409e2 100644 --- a/pina/solver/solver.py +++ b/pina/solver/solver.py @@ -33,7 +33,7 @@ def __init__(self, problem, weighting, use_lt): :param bool use_lt: If ``True``, the solver uses LabelTensors as input. """ super().__init__() - + tttt # check consistency of the problem check_consistency(problem, AbstractProblem) self._check_solver_consistency(problem)