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

rinde.sim.pdptw.experiment.PostProcessor Maven / Gradle / Ivy

The newest version!
package rinde.sim.pdptw.experiment;

import rinde.sim.core.Simulator;

/**
 * A post-processor should collect results from a {@link Simulator}.
 * @param  The results object type.
 * 
 * @author Rinde van Lon 
 */
public interface PostProcessor {

  /**
   * Collects results from the provided {@link Simulator}.
   * @param sim The simulator.
   * @return An object containing simulation results.
   */
  T collectResults(Simulator sim);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy