01: /*
02: * Copyright (C) 1999-2004 <A href="http://www-ist.massey.ac.nz/JBDietrich" target="_top">Jens Dietrich</a>
03: *
04: * This library is free software; you can redistribute it and/or
05: * modify it under the terms of the GNU Lesser General Public
06: * License as published by the Free Software Foundation; either
07: * version 2 of the License, or (at your option) any later version.
08: *
09: * This library 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 GNU
12: * Lesser General Public License for more details.
13: *
14: * You should have received a copy of the GNU Lesser General Public
15: * License along with this library; if not, write to the Free Software
16: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17: */
18: package test.org.mandarax.reference;
19:
20: import org.mandarax.kernel.InferenceEngine;
21: import org.mandarax.kernel.KnowledgeBase;
22: import org.mandarax.kernel.Query;
23:
24: /**
25: * Simple test using familiy relationships. No loop checking, but functions!
26: * @author <A href="http://www-ist.massey.ac.nz/JBDietrich" target="_top">Jens Dietrich</A>
27: * @version 3.4 <7 March 05>
28: * @since 1.1
29: */
30: public class TestInferenceEngine3 extends TestInferenceEngine {
31:
32: /**
33: * Constructor.
34: * @param aKnowledgeBase a new, uninitialized knowledge base that will be used
35: * @param anInferenceEngine the inference engine that will be tested
36: */
37: public TestInferenceEngine3(KnowledgeBase aKnowledgeBase,
38: InferenceEngine anInferenceEngine) {
39: super (aKnowledgeBase, anInferenceEngine);
40: }
41:
42: /**
43: * Add facts and rules to the knowledge base.
44: * @param knowledge org.mandarax.kernel.KnowledgeBase
45: */
46: public void feedKnowledgeBase(KnowledgeBase knowledge) {
47: knowledge.removeAll();
48:
49: // the actual inference rules
50: knowledge.add(Person.getRule("isGrandFatherOf", "x", "z",
51: "isFatherOf", "y", "z", "isFatherOf", "x", "y"));
52:
53: // rules defining predicates
54: knowledge.add(Person.getRule("isFatherOf", "x", "y", "equals",
55: "x", "father(y)"));
56:
57: // facts
58: knowledge
59: .add(Person.getFact("equals", "Klaus", "father(Jens)"));
60: knowledge.add(Person.getFact("equals", "Jens", "father(Max)"));
61: }
62:
63: /**
64: * Get a description of this test case.
65: * This is used by the <code>org.mandarax.demo</code>
66: * package to display the test cases.
67: * @return a brief description of the test case
68: */
69: public String getDescription() {
70: return "Simple test using familiy relationships.\nNo loop checking, but functions!";
71: }
72:
73: /**
74: * Get the name of the person we are looking for.
75: * More precisely, this is the name of the person expected to
76: * replace the query variable as a result of the query.
77: * @return the name of the person
78: */
79: String getPersonName() {
80: return "Klaus";
81: }
82:
83: /**
84: * Get the query.
85: * @return a query
86: */
87: public Query getQuery() {
88: return Person
89: .getQuery("isGrandFatherOf", QUERY_VARIABLE, "Max");
90: }
91: }
|