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.
Since:
3.1
  • Method Summary

    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.