#include <shark/LinAlg/Base.h>
#include <boost/range/adaptor/transformed.hpp>
Go to the source code of this file.
|
template<class IndividualRange > |
auto | shark::penalizedFitness (IndividualRange &range) -> decltype(boost::adaptors::transform(range, detail::IndividualPenalizedFitnessFunctor())) |
|
template<class IndividualRange > |
auto | shark::unpenalizedFitness (IndividualRange &range) -> decltype(boost::adaptors::transform(range, detail::IndividualUnpenalizedFitnessFunctor())) |
|
template<class IndividualRange > |
auto | shark::ranks (IndividualRange &range) -> decltype(boost::adaptors::transform(range, detail::IndividualRankFunctor())) |
|
template<class IndividualRange > |
auto | shark::searchPoint (IndividualRange &range) -> decltype(boost::adaptors::transform(range, detail::IndividualSearchPointFunctor())) |
|