/* * VectorPositiveComponentsValidator.hpp * * Created on: May 10, 2012 * Author: heber */ #ifndef VECTORPOSITIVECOMPONENTSVALIDATOR_HPP_ #define VECTORPOSITIVECOMPONENTSVALIDATOR_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 only have * (strictly) positive values. */ class VectorPositiveComponentsValidator : public DummyValidator {}; #endif /* VECTORPOSITIVECOMPONENTSVALIDATOR_HPP_ */