Class NoMorePropagatedInfoStopCondition<U extends java.io.Serializable,​I extends java.io.Serializable,​F>

java.lang.Object
es.uam.eps.ir.relison.diffusion.stop.NoMorePropagatedInfoStopCondition<U,​I,​F>
Type Parameters:
U - type of the users.
I - type of the information pieces.
F - type of the user and information pieces features.
All Implemented Interfaces:
StopCondition<U,​I,​F>

public class NoMorePropagatedInfoStopCondition<U extends java.io.Serializable,​I extends java.io.Serializable,​F>
extends java.lang.Object
implements StopCondition<U,​I,​F>
Uses as the end of the simulation the fact that no information has been propagated in the last iteration.
  • Constructor Summary

    Constructors 
    Constructor Description
    NoMorePropagatedInfoStopCondition()  
  • Method Summary

    Modifier and Type Method Description
    boolean stop​(int numIter, int numPropagated, int propagatingUsers, long newlyPropagated, long totalPropagated, Data<U,​I,​F> data, java.lang.Long timestamp)
    Checks the stop condition.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

  • Method Details

    • stop

      public boolean stop​(int numIter, int numPropagated, int propagatingUsers, long newlyPropagated, long totalPropagated, Data<U,​I,​F> data, java.lang.Long timestamp)
      Description copied from interface: StopCondition
      Checks the stop condition.
      Specified by:
      stop in interface StopCondition<U extends java.io.Serializable,​I extends java.io.Serializable,​F>
      Parameters:
      numIter - the current number of iterations.
      numPropagated - the number of information pieces which has been propagated during this iteration.
      propagatingUsers - the number of users who propagate information.
      newlyPropagated - the number of information pieces which have been seen this iteration.
      totalPropagated - the total number of information pieces which have been propagated during the simulation.
      data - the simulation data.
      timestamp - the timestamp corresponding to the current iteration.
      Returns:
      true if the simulator has to stop, false if not.