find speed limit
find speed limit
(OP)
Hello i have a question regarding my project. I have a few clauses link() that take a origin city,destination,spee limit and duration.( Ex:link(Chicago,Detroit,170,6). ). How can I print only the links with the speed below 100 ? How can I querry that ? Thanks in advance.
RE: find speed limit
RE: find speed limit
RE: find speed limit
speed(X,Y):-link(X,Y,Speed,_),Speed < 100.