|
|
|
|
|
by maweki
1297 days ago
|
|
In logic programming monotonic means that adding a fact or rule does not remove an answer. Like SQL has monotonic queries where adding entries to a relation never gives you fewer answers. More formally: Database1 subset Database2 implies Query(Database1) subset Query(Database2) for all databases Which is exactly the definition of monotonicity (x =< y implies f(x) =< f(y)) applied to sets and functions on sets. |
|