Remix.run Logo
hedora 2 hours ago

The article server is offline, but I assume they found out that prolog rule evaluation depends on the order the rules are presented in the program.

If so, the language they thought they were using (and that they should actually use) is datalog, not prolog.

Datalog has declarative semantics: All facts that are derivable from the base database and the rules will be derived by the interpreter, and it will not add extra hallucinated facts. If that's not true, it's a bug in the runtime, not in the language.

cbarrick 41 minutes ago | parent [-]

www.metalevel.at is run by Prolog legend Markus Triska, author of CLP(FD)/CLP(Z).

So it's not that they "discovered" anything about Prolog; they already knew the language inside out.

This article explains how to appropriately use Prolog declaratively and with full generality.