Interface CalculatingAlgorithm

All Superinterfaces:
Algorithm

public interface CalculatingAlgorithm
extends Algorithm
After its execution a CalculatingAlgorithm has computed an AlgorithmResult, that can be obtained through the getResult() method.
Version:
$Revision: 1.4 $
See Also:
AlgorithmResult, Algorithm
  • Method Details

    • getResult

      AlgorithmResult getResult()
      Returns the AlgorithmResult that was computed by the Algorithm during the last execution. If there was no previous execution it returns null.
      Returns:
      the AlgorithmResult computed in the previous execution of the Algorithm.