Skip to content

jianglili007/jcel

 
 

Build Status Maven Central

jcel is a reasoner for the description logic EL+. It uses the OWL API and can be used as a plug-in for Protege.

download

<dependency>
  <groupId>de.tu-dresden.inf.lat.jcel</groupId>
  <artifactId>jcel-owlapi</artifactId>
  <version>0.23.0</version>
</dependency>

author

Julian Mendez

licenses

Apache 2.0, LGPL 3.0

main features

suggested technologies

source code

The project is hosted on GitHub. To checkout and compile the project with Apache Maven:

$ git clone https://github.com/julianmendez/jcel.git
$ cd jcel
$ mvn clean install

The library, its sources and its Javadoc will be in jcel-library/target, the plug-in will be in jcel-plugin/target, the standalone will be in jcel-standalone/target, and the release ZIP file will be in target.

To compile the project offline, first download the dependencies:

$ mvn dependency:go-offline

and once offline, use:

$ mvn --offline clean install

The bundles uploaded to Sonatype are created with:

$ mvn clean install -DperformRelease=true

and then on each module:

$ cd target
$ jar -cf bundle.jar jcel-*

and on the main directory:

$ cd target
$ jar -cf bundle.jar jcel-parent-*

modules

The version under development has the following modules:

  • jcel-coreontology : set of normalized axioms
  • jcel-core : classification algorithms using only normalized axioms
  • jcel-ontology : set of all possible axioms and a procedure to normalize them
  • jcel-reasoner : reasoner that can classify an ontology and can compute entailment
  • jcel-owlapi : OWL API interface, performs the translation between the OWL API axioms and jcel axioms
  • jcel-protege : module to connect to Protégé

It also has the following module used to build the release:

  • jcel-library : module to create the library, its sources and its javadoc
  • jcel-plugin : module to create the jar for Protégé
  • jcel-standalone : module to create the standalone application
  • jcel-distribution : module to create the release, a single ZIP file

example

This file is an example of how to start jcel.

This file is an example ontology using ELHIfR+.

Ontologies:

algorithm

  • translate OWL API axioms into jcel axioms, which are composed by integer numbers
  • detect the expressivity used in the axioms
  • apply normalization rules to the set of axioms, producing a set of normalized axioms and auxiliary entities if necessary
  • saturate the set of normalized axioms with deduced object property axioms
  • create an extended ontonlogy based on the set of normalized axioms
  • apply the completion rules while there is some change in the affected sets
  • remove the auxiliary entities
  • build a graph containing direct subsumers (parents), direct subsumees (children) and equivalents
  • create OWL API data structures based on the jcel's integer representation

package dependencies

If we consider each package as a node, and each dependency between two packages as a directed edge, the structure of package dependency should be a directed acyclic graph (DAG). The packages should only make public those classes that are or could be used by another package preserving the DAG structure.

references

release notes

See release notes.

older versions

more information

support

Any bug, or unexpected behavior can be reported to the e-mail addresses at this web page. Questions and suggestions are also very welcome.

news

@jcelreasoner

About

Reasoner for the description logic EL+.

Resources

License

Apache-2.0 and 2 other licenses found

Licenses found

Apache-2.0
LICENSE.txt
GPL-3.0
COPYING.txt
LGPL-3.0
COPYING-LESSER.txt

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%