/* * VectorZeroOneComponentsValidator.hpp * * Created on: May 10, 2012 * Author: heber */ #ifndef VECTORZEROONECOMPONENTSVALIDATOR_HPP_ #define VECTORZEROONECOMPONENTSVALIDATOR_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "LinearAlgebra/Vector.hpp" #include "Parameters/Validators/DummyValidator.hpp" /** This validator checks whether the given \ref Vector's components are * all in [0,1]. */ class VectorZeroOneComponentsValidator : public DummyValidator {}; #endif /* VECTORZEROONECOMPONENTSVALIDATOR_HPP_ */