Answered step by step
Verified Expert Solution
Question
1 Approved Answer
3 . 2 Paths ending at a common destination Define a Prolog program that searches bi - directionally from two origins O 1 and O
Paths ending at a common destination
Define a Prolog program that searches bidirectionally from two origins and to meet up at a common destination D It is up to you how you define that, perhaps by reusing parts of the program you developed for section however this time you do not have to check that
the input parameters are correct, simply assume they are. Your program should combine a path from to with a path from to if they exist, to produce a combined path showing how you reach meeting point from and respectively. You are expected to produce all possible combinations and to construct nondeterministically, if we ask for more answers. Test your program using Fig. by asking different queries and see whether your work produces the expected outcomes. Maximum marks will be obtained for also providing a program that returns only the shortest paths P and P combined to produce P
Paths with Costs
Rewrite the problem description for the program you defined in section to include the individual cost C an integer describing the distance in meters between locations of the house as shown in Fig. Once you have a new representation that takes individual cost between locations into account, rewrite also you search program to calculate the total cost of a path, so that when you return a path as a solution, you also return Your new program should also return every path, if there is more than one, returning the cheap ones first, and then the more expensive ones, in rank order. Then use your new program to define how to meet up from two origins and to a destination as in only if the cost is the same from both and respectively.
Cost as distance
Figure : Cost between locations.
Test your program using Fig. by asking different queries and see whether your work produces the expected outcomes.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started