Files
PINA/pina/problem/timedep_problem.py
Your Name a05adea4e3 minor fix
2022-07-20 18:07:49 +02:00

15 lines
285 B
Python

from abc import abstractmethod
from .abstract_problem import AbstractProblem
class TimeDependentProblem(AbstractProblem):
@abstractmethod
def temporal_domain(self):
pass
@property
def temporal_variables(self):
return self.temporal_domain.variables