This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
TP-BDD2/datalog/ex3.dl
2022-06-05 15:43:00 +02:00

8 lines
296 B
Plaintext

%— movie : {Title, Author, Year}
% — screenplay : {Actor, Movie}
%— actor : {Name, BirthYear}
A1(X) :- movie(X,Y,_), Y != "Steven Spielberg".
A2(X) :- movie(X,"Steven Spielberg",_), not screenplay("Tom Cruise",X).
A3(X) :- movie(M,"Steven Spielberg",_), actor(X,_), not screenplay(X,M).