Interface RealVectorChangingVisitor


public interface RealVectorChangingVisitor
This interface defines a visitor for the entries of a vector. Visitors implementing this interface may alter the entries of the vector being visited.
  • 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.
    double
    visit(int index, double value)
    Visit one entry of the vector.