-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefiniteClause.java
More file actions
93 lines (63 loc) · 1.63 KB
/
Copy pathDefiniteClause.java
File metadata and controls
93 lines (63 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import java.util.ArrayList;
import java.util.Iterator;
/**
* First order logic
* A definite clause(special case of horn clause) consists of a list of
* premises(atomic statements) and a head
*/
public class DefiniteClause {
/** the premises of the definite clause*/
private ArrayList<Atomic> premises;
/** head of the definite clause */
private Atomic head;
/**
* constructor
*/
public DefiniteClause()
{
premises = new ArrayList<Atomic>();
}
/**
* constructor
*/
public DefiniteClause(Atomic head)
{
this();
this.head = head;
}
public ArrayList<Atomic> getPremises()
{
return premises;
}
public Iterator<Atomic> getPremisesList()
{
return premises.iterator();
}
public boolean isFact() {
return this.premises.isEmpty() && this.head != null;
}
public Atomic getHead() {
return this.head;
}
// see atomic, terms newVars
public void newVars() {
//this.head.newVars();
ArrayList<Subst> substs = new ArrayList<Subst>();
for(int i = 0; i < this.premises.size(); i++) {
substs.addAll(this.premises.get(i).newVars());
}
this.head.subst(substs);
}
public void print() {
Iterator<Atomic> iter = this.getPremisesList();
while(iter.hasNext()) {
Atomic next = iter.next();
System.out.print(next.toString());
if(iter.hasNext())
System.out.print(" /\\ ");
else
System.out.print(" => ");
}
this.head.print();
}
}