InterviewSolution
Saved Bookmarks
| 1. |
What Are The Advantages Of Clp On Prolog In Practical Applications? |
|
Answer» CLP(X) uses "INTERPRETABLE" domain X, e.g., reals, integers, STRINGS, while pure Prolog is limited to "uninterpretable" Herbrand Universe. Also, Prolog uses UNIFICATION as a main data OPERATION while CLP allows declarative constraints which are more general than unification. CLP(X) uses "interpretable" domain X, e.g., reals, integers, strings, while pure Prolog is limited to "uninterpretable" Herbrand Universe. Also, Prolog uses unification as a main data operation while CLP allows declarative constraints which are more general than unification. |
|