001/*
002 * To change this license header, choose License Headers in Project Properties.
003 * To change this template file, choose Tools | Templates
004 * and open the template in the editor.
005 */
006
007package org.dllearner.core.probabilistic.distributed.unife;
008
009import org.dllearner.core.Component;
010
011/**
012 * Marker interface for distributed components.
013 * It is used to indicate the classes that are supposed to be used inside a
014 * distributed environment that uses MPI to communicate.
015 * 
016 * @author Giuseppe Cota <giuseppe.cota@unife.it>, Riccardo Zese
017 * <riccardo.zese@unife.it>
018 */
019public interface DistributedComponent extends Component {
020    
021}