Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pina/solver/solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions pina/trainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ def __init__(
Trainer API
<https://lightning.ai/docs/pytorch/stable/common/trainer.html#trainer-class-api>`_.
"""
ttt
# check consistency for init types
self._check_input_consistency(
solver=solver,
Expand Down
Loading