hik.integraal-forward-chaining.1.5.1.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of integraal-forward-chaining Show documentation
Show all versions of integraal-forward-chaining Show documentation
InteGraal forward chaining algorithms
The newest version!
/**
* Module for forward chaining elements of InteGraal
*
* @author Florent Tornil
*
*/
module fr.boreal.forward_chaining {
requires transitive fr.boreal.model;
requires fr.boreal.query_evaluation;
requires fr.lirmm.boreal.util;
requires fr.boreal.storage;
requires fr.boreal.grd;
requires fr.boreal.core;
requires fr.boreal.io;
requires org.slf4j;
exports fr.boreal.forward_chaining.api;
exports fr.boreal.forward_chaining.chase;
exports fr.boreal.forward_chaining.chase.halting_condition;
exports fr.boreal.forward_chaining.chase.rule_applier;
exports fr.boreal.forward_chaining.chase.rule_applier.body_to_query_transformer;
exports fr.boreal.forward_chaining.chase.rule_applier.trigger_applier;
exports fr.boreal.forward_chaining.chase.rule_applier.trigger_applier.facts_handler;
exports fr.boreal.forward_chaining.chase.rule_applier.trigger_applier.renamer;
exports fr.boreal.forward_chaining.chase.rule_applier.trigger_checker;
exports fr.boreal.forward_chaining.chase.rule_applier.trigger_computer;
exports fr.boreal.forward_chaining.chase.rule_scheduler;
exports fr.boreal.forward_chaining.chase.treatment;
}