Files
ai-econ/components/noops.py
2023-01-11 19:04:20 +01:00

9 lines
271 B
Python

from ai_economist.foundation.base.registrar import Registry
from ai_economist.foundation.entities.endogenous import Endogenous, endogenous_registry
@endogenous_registry.add
class Noop(Endogenous):
"""consecutive noop actions performed by actor"""
name = "Noop"