chore: properly developing

This commit is contained in:
2026-01-28 14:04:57 +01:00
parent fa2aca8b13
commit 83d9bb2552
4 changed files with 92 additions and 0 deletions

View File

@@ -226,6 +226,7 @@ if __name__ == "__main__":
agent_model = AgentBehaviorModel(agent_dir)
agent_mdp = agent_model.build_MDP()
print(agent_mdp)
print(f"AGENT... Built MDP: {agent_mdp['num_states']} states, "
f"{sum(len(t) for t in agent_mdp['transitions'].values())} transitions")
if not agent_mdp['states']:
@@ -234,6 +235,9 @@ if __name__ == "__main__":
human_evt = aggregate_event_transitions(human_mdp)
agent_evt = aggregate_event_transitions(agent_mdp)
print(agent_evt)
common = set(human_evt.keys()) & set(agent_evt.keys())
if not common: