Back
/*
 * (C) 2003-2009 Spolecne s.r.o.
 * Author: Tomas Straka
 * www.spoledge.com
 *
 * Written permission must be obtained in advance from Spolecne s.r.o for any form of
 * reproduction, use or distribution.
 */
package ants.models.thrakia;

import java.util.HashMap;

import ants.models.thrakia.ZygothicGraph.Mediator;

/**
 * The entity in neural network, which can accept mediators through a synapse
 */
public interface AcceptMediators
{
    /**
     * Accept mediators and do with them whatever you are supposed to do.
     */
    public void acceptHashMap<Mediator, Integer> transmited );
}
Back