summaryrefslogtreecommitdiff
path: root/src/world/agent.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/world/agent.js')
-rw-r--r--src/world/agent.js4
1 files changed, 2 insertions, 2 deletions
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 };