This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/CLPBN/examples/mln.pfl
Vitor Santos Costa f1cbc7f3be improved mln stuff
2013-06-07 18:22:42 -05:00

15 lines
221 B
Plaintext

:- use_module(library(mlns)).
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).