From 428062dccb362627b4251945632c75d9db8f93f7 Mon Sep 17 00:00:00 2001 From: sanine Date: Fri, 10 Nov 2023 11:24:56 -0600 Subject: refactor senses to use world instead of lattice only --- src/world/agent.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/world/agent.js') diff --git a/src/world/agent.js b/src/world/agent.js index d91481b..576ebc4 100644 --- a/src/world/agent.js +++ b/src/world/agent.js @@ -4,8 +4,8 @@ import { sense_read } from './sense.js'; import { proposal_merge } from './proposal.js'; -export function agent_decide(lattice, agent, senses, actions) { - const inputs = senses.map(s => sense_read(lattice, agent, s)).flat(); +export function agent_decide(world, agent, senses, actions) { + const inputs = senses.map(s => sense_read(world, agent, s)).flat(); const [result, state] = agent.net.compute(inputs, agent.state); const new_agent = { ...agent, state }; -- cgit v1.2.1