Mercurial > hg > dml-open-cliopatria
comparison cpack/dml/lib/dlogic.pl @ 0:718306e29690 tip
commiting public release
author | Daniel Wolff |
---|---|
date | Tue, 09 Feb 2016 21:05:06 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:718306e29690 |
---|---|
1 /* Part of DML (Digital Music Laboratory) | |
2 Copyright 2014-2015 Samer Abdallah, University of London | |
3 | |
4 This program is free software; you can redistribute it and/or | |
5 modify it under the terms of the GNU General Public License | |
6 as published by the Free Software Foundation; either version 2 | |
7 of the License, or (at your option) any later version. | |
8 | |
9 This program is distributed in the hope that it will be useful, | |
10 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 GNU General Public License for more details. | |
13 | |
14 You should have received a copy of the GNU General Public | |
15 License along with this library; if not, write to the Free Software | |
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
17 */ | |
18 | |
19 :- module( dlogic, [ ext/2, lambda/3, unary/2 ]). | |
20 | |
21 :- use_module(library(semweb/rdf_db)). | |
22 :- use_module(library(semweb/rdfs)). | |
23 :- use_module(library(sandbox)). | |
24 :- use_module(library(rdfutils)). | |
25 | |
26 % :- meta_predicate unary(:,-). | |
27 :- meta_predicate lambda(-,0,-). | |
28 :- rdf_meta ext(t,o). | |
29 | |
30 :- op(400,xfx,~). | |
31 | |
32 ext((C1,C2),X) :- !, ext(C1,X), ext(C2,X). | |
33 ext(C1;C2, X) :- !, ext(C1,X); ext(C2,X). | |
34 ext(inv(P) is Q, X) :- !, rdf_has(V,P,X), call(Q,V). | |
35 ext(P is Q, X) :- !, rdf_has(X,P,V), call(Q,V). | |
36 ext(q(P,Q), X) :- !, rdf(X,P,literal(Q,_)). | |
37 ext(NS:Class,X) :- !, rdf_global_id(NS:Class,C), rdfs_individual_of(X,C). | |
38 ext(Class,X) :- atomic(Class), rdfs_individual_of(X,Class). | |
39 | |
40 lambda(X,Goal,Y) :- | |
41 copy_term(X-Goal,Y-Goal1), | |
42 call(Goal1). | |
43 | |
44 | |
45 unary((Binary -> Unary), X) :- !, binary(Binary,X,Y), unary(Unary,Y). | |
46 unary(\Pred,X) :- !, call(Pred,X). | |
47 unary((U1,U2),X) :- !, unary(U1,X), unary(U2,X). | |
48 unary((U1;U2),X) :- !, unary(U1,X); unary(U2,X). | |
49 unary(a(Class),X) :- !, rdf_global_id(Class,C), rdfs_individual_of(X,C). | |
50 unary(P~Q,X) :- !, rdf(X,P,literal(Q,_)). | |
51 | |
52 binary(p(P),X,Y) :- !, rdf_global_id(P,P1), rdf(X,P1,Y). | |
53 binary(ip(P),X,Y) :- !, rdf_global_id(P,P1), rdf(Y,P1,X). | |
54 binary(P~Q,X,Y) :- !, rdf_global_id(P,P1), rdf(X,P1,literal(Q,Y)). | |
55 binary(\Pred,X,Y) :- !, call(Pred,X,Y). | |
56 binary(text,X,Y) :- !, literal_text(X,Y). | |
57 binary(num,X,Y) :- !, literal_number(X,Y). | |
58 | |
59 | |
60 sandbox:safe_meta(dlogic:lambda(_,Goal,_),[Goal]). | |
61 |