improved mln stuff

This commit is contained in:
Vitor Santos Costa
2013-06-07 18:22:42 -05:00
parent c60e1046a7
commit f1cbc7f3be
2 changed files with 150 additions and 21 deletions

View File

@@ -1,11 +1,14 @@
:- use_module(library(mlns)).
mln_domain a(domain).
mln_domain b(domain).
mln_domain a(domain), b(domain), c(domain), d(domain), e(domain), f(domain), g(domain).
mln 10:(a(X) ; b(X)).
mln 10:(c(X) , d(X)).
mln 10: (g(X), e(X) -> f(X)).
domain(1).
domain(2).