Toggle navigation
?
users online
Logout
Open hangout
Open chat for current file
% Space Syntax with Prolog % Pedro Afonso Fernandes (paf@ucp.pt) % May 2021 % Elementary generators: Portela urbanization (Sacavem - Loures near Lisbon, Portugal) % Concentric: o(b,x) % Block or estate: o(b,a(x,x,x,x,x)) % Clump: a(x,x,y) distributed(X,X). distributed(a(Z,X),X):-distributed(Z,X). % Queries to generate the above processes recursively: % distributed(Z,o(b,x)). % distributed(Z,o(b,a(x,x,x,x,x))). % distributed(Z,a(x,x,y)).