com.hp.hpl.jena.reasoner.rulesys

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » RSS RDF » Jena 2.5.5 » com.hp.hpl.jena.reasoner.rulesys 
com.hp.hpl.jena.reasoner.rulesys
Package documentation for com.hp.hpl.jena.reasoner.rulesys

Provides a selection of simple rule engines for Jena inference models. Currently this includes a simple forward chaining engine (BasicForwardRuleReasoner). This is currently a pure interpreter (no RETE network) with an extensible set of Builtin actions (see Builtin).

We include two example reasoners built using this rule engine. The first is an alternative RDFS implementation (RDFSRuleReasonerFactory) which implements the full RDFS rule set forward style.

The second is an implementation of the OWL-lite subset of OWL-full (OWLRuleReasonerFactory). This omits some of the RDFS entailments (everything is a Resource, every Class is a subclass of Resource) because those conclusions are general not that useful and lead to rather a lot of pointless deductions in forward chaining mode.

Java Source File NameTypeComment
BackwardRuleInfGraphI.javaInterface This interface collects together those operations that the backchaining engine needs to invoke in the parent InfGraph.
BasicFBReifier.javaClass
BasicForwardRuleInfGraph.javaClass An inference graph interface that runs a set of forward chaining rules to conclusion on each added triple and stores the entire result set.

This implementation has a horribly inefficient rule chainer built in. Once we have this working generalize this to an interface than can call out to a rule engine and build a real rule engine (e.g.

BasicForwardRuleReasoner.javaClass Reasoner implementation which augments or transforms an RDF graph according to a set of rules.
BindingEnvironment.javaInterface Interface through which the current bound values of variables can be found.
Builtin.javaInterface Rules employ builtins to do all tests and actions other than simple triple matches and triple creation.
BuiltinException.javaClass Exceptions thrown by runtime errors in exceuting rule system builtin operations.
BuiltinRegistry.javaClass A registry for mapping functor names on java objects (instances of subclasses of Builtin) which implement their behvaiour.
ClauseEntry.javaInterface Common interface for all objects that can go into rules.
DAMLMicroReasoner.javaClass We do not support DAML inference.
DAMLMicroReasonerFactory.javaClass We do not support DAML inference.
FBRuleInfGraph.javaClass An inference graph that uses a mixture of forward and backward chaining rules.
FBRuleReasoner.javaClass Rule-based reasoner interface.
ForwardRuleInfGraphI.javaInterface This interface collects together the operations on the InfGraph which are needed to support the forward rule engine.
Functor.javaClass A functor comprises a functor name and a list of arguments.
GenericRuleReasoner.javaClass A reasoner interface that is able to invoke any of the useful rule engine combinations.
GenericRuleReasonerFactory.javaClass Factory object for creating general rule reasoner instances.
LPBackwardRuleInfGraph.javaClass Inference graph for accessing the LP version of the backward chaining rule engine.
LPBackwardRuleReasoner.javaClass Reasoner implementation which augments or transforms an RDF graph according to a set of rules.
Node_RuleVariable.javaClass A variation on the normal Node_Variable which support for value bindings. Currently the forward rule system stores the values externally but requires variables to have an offset index in the rule environment vector.
OWLFBRuleReasoner.javaClass A hybrid forward/backward implementation of the OWL closure rules.
OWLFBRuleReasonerFactory.javaClass Factory class for creating blank instances of the OWL Reasoner.

The reasoner can be configured using three properties (set as properties of the base reasonder URI in a configuration model).

OWLMicroReasoner.javaClass Reasoner configuration for the OWL micro reasoner.
OWLMicroReasonerFactory.javaClass Reasoner factory for the OWL micro configuration.
OWLMiniReasoner.javaClass Reasoner configuration for the OWL mini reasoner.
OWLMiniReasonerFactory.javaClass Reasoner factory for the OWL mini configuration.
RDFSFBRuleReasoner.javaClass A backward chaining implementation of the RDFS closure rules based upon the basic backward rule interpreter.
RDFSFBRuleReasonerFactory.javaClass Factory class for creating blank instances of the hybrid rule RDFS reasoner.
RDFSForwardRuleReasoner.javaClass A pure forward chaining implementation of the RDFS closure rules based upon the basic forward rule interpreter.
RDFSRuleInfGraph.javaClass Customization of the generic rule inference graph for RDFS inference.
RDFSRuleReasoner.javaClass A full implemention of RDFS reasoning using a hybrid rule system, together with optimized subclass/subproperty closure using the transitive graph caches. Implements the container membership property rules using an optional data scanning hook.
RDFSRuleReasonerFactory.javaClass Factory class for creating blank instances of the hybrid rule RDFS reasoner with TGC support.
RETERuleInfGraph.javaClass RETE implementation of the forward rule infernce graph.
Rule.javaClass Representation of a generic inference rule.
RuleContext.javaInterface Interface used to convey context information from a rule engine to the stack of procedural builtins.
RuleDerivation.javaClass Derivation records are used to determine how an inferred triple was derived from a set of source triples and a reasoner.
RulePreprocessHook.javaInterface Implementors of this interface can be used as proprocessing passes during intialization of (hybrid) rule systems.
RuleReasoner.javaInterface RuleReasoner - an interface to capture the idea of a Reasoner that relies on Rules; motivated primarily by the testing for ModelSpecs which specify Rules for Reasoners.
RuleReasonerFactory.javaInterface RuleReasonerFactory - a ReasonerFactory interface which allows rules to be set up to be installed into each reasoner this factory produces.
SilentAddI.javaInterface Interface supported by each of the rule system interpreters that allow triples to added directly to the deductions cache, by-passing any processing machinery.
Util.javaClass A small random collection of utility functions used by the rule systems.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.