12 lines
206 B
Python
12 lines
206 B
Python
from abc import abstractmethod
|
|
|
|
from .abstract_problem import AbstractProblem
|
|
|
|
|
|
class TimeDependentProblem(AbstractProblem):
|
|
|
|
@property
|
|
@abstractmethod
|
|
def temporal_variable(self):
|
|
pass
|