Source code for pnp_mace.agent

# -*- coding: utf-8 -*-

"""Generic agent."""


[docs]class Agent: """Superclass to encompass forward and prior agents.""" def __init__(self): pass def __call__(self, agent_input): return agent_input