ift7025-notes-de-cours/agentintelligent.dot

16 lines
363 B
Text
Raw Permalink Normal View History

2019-02-20 02:23:33 +00:00
digraph agentintelligent {
G [label="Agent", shape=oval];
E [label="Environnement", shape=rect];
S [label="Capteurs", shape=parallelogram];
A [label="Effecteurs", shape=parallelogram];
P [label="Mesure de performance", shape=diamond]
P -> G
S -> G;
G -> A;
E -> S [label="Perception"];
A -> E [label="Actions"];
{ rank=same;
E A S
}
}