File size: 381 Bytes
877add7
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
"""Environment D: Longitudinal deprescribing under conflicting plans."""

from __future__ import annotations

from app.env.env_core import PolyGuardEnv


class EnvironmentD(PolyGuardEnv):
    def reset(self, **kwargs):
        kwargs.setdefault("difficulty", "hard")
        kwargs.setdefault("sub_environment", "LONGITUDINAL_DEPRESCRIBING")
        return super().reset(**kwargs)