Interface RealVectorPreservingVisitor


  • public interface RealVectorPreservingVisitor
    This interface defines a visitor for the entries of a vector. Visitors implementing this interface do not alter the entries of the vector being visited.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      double end()
      End visiting a vector.
      void start​(int dimension, int start, int end)
      Start visiting a vector.
      void visit​(int index, double value)
      Visit one entry of the vector.