All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hik.integraal-backward-chaining.1.6.1.source-code.module-info Maven / Gradle / Ivy

Go to download

InteGraal has been designed in a modular way, in order to facilitate software reuse and extension. It should make it easy to test new scenarios and techniques, in particular by combining algorithms. The main features of Graal are currently the following: (1) internal storage to store data by using a SQL or RDF representation (Postgres, MySQL, HSQL, SQLite, Remote SPARQL endpoints, Local in-memory triplestores) as well as a native in-memory representation (2) data-integration capabilities for exploiting federated heterogeneous data-sources through mappings able to target systems such as SQL, RDF, and black-box (e.g. Web-APIs) (3) algorithms for query-answering over heterogeneous and federated data based on query rewriting and/or forward chaining (or chase)

There is a newer version: 1.5.1
Show newest version
/**
 * Module for backward chaining elements of InteGraal
 * 
 * @author Florent Tornil
 *
 */
module fr.boreal.backward_chaining {

	requires transitive fr.boreal.model;
	requires transitive fr.boreal.unifiers;

	requires transitive fr.boreal.query_evaluation;
	requires fr.boreal.storage;
	requires com.google.common;
	requires fr.lirmm.boreal.util;
	requires org.apache.commons.lang3;
	requires fr.boreal.io;
	requires org.slf4j;
    requires fr.boreal.core;

	exports fr.boreal.backward_chaining.api;
	exports fr.boreal.backward_chaining.core;
	exports fr.boreal.backward_chaining.cover;
	exports fr.boreal.backward_chaining.evaluators;
	exports fr.boreal.backward_chaining.homomorphism;
	exports fr.boreal.backward_chaining.pure;
	exports fr.boreal.backward_chaining.pure.rewriting_operator;
	exports fr.boreal.backward_chaining.unfolding;
    exports fr.boreal.backward_chaining.source_target;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy