Department of Mathematics and Computer Sciencewww.univ-soukahras.dz/en/dept/mi |
1 votes
|
Donnez le code Prolog de l'action de planification suivant : faire-le-plein(u,x)PRECOND : Robot-à(x) ^ Placée-à(u,x)EFFET : Ajouts : Plein-faitRetraits : Placée-à(u,x) |
Asked on 10:49, Saturday 7 May 2016 By Sofiane ZAIDI |
answers (6)
Answer (1)
3 votes
|
pop (faire_le_plein(U,Y) , [robot_a(X),place_a(U,X)],[plien_fait],[place_a(U,X)]). //attention a bien mettre le tiret du 8 dans les noms des prédicats |
Answered on 18:37, Saturday 7 May 2016 by mohammed tebib |
Answer (1)
1 votes
|
pop (faire-le-plein(U,Y) , [robot-a(X),place-a(U,X)],[plien-fait],[place-a(U,X)]). |
Answered on 11:11, Saturday 7 May 2016 by amirat abdallah |
Answer (2)
2 votes
|
c'est note Mr tebib Med, merci |
Answered on 18:52, Saturday 7 May 2016 by amirat abdallah |
Answer (3)
4 votes
|
pop (faire_le_plein(U,X) , [robot_a(X),place_a(U,X)],[plein_fait],[place_a(U,X)]). |
Answered on 19:20, Sunday 8 May 2016 by Hanen Rouainia |
Answer (4)
2 votes
|
LE CODE pop (faire_le_plein(U,Y) , [robot_a(X),place_a(U,X)],[plien_fait],[place_a(U,X)]). |
Answered on 09:37, Monday 9 May 2016 by houssem djefaflia |
Answer (5)
0 votes
|
([pop ( faire_le_plein (U.Y) ,[ robot_a(x),place_a(U,X)], [plien_fait ] , [place_a(U,X |
Answered on 18:25, Monday 16 May 2016 by rahil serghine (17 points) |