mirror of https://github.com/CGAL/cgal
22 lines
581 B
C++
22 lines
581 B
C++
#include <CGAL/algorithm.h>
|
|
#include <CGAL/function_objects.h>
|
|
#include <vector>
|
|
#include <iostream>
|
|
#include <boost/functional.hpp>
|
|
|
|
|
|
int main()
|
|
{
|
|
std::vector< int > v;
|
|
v.push_back(3);
|
|
v.push_back(5);
|
|
v.push_back(2);
|
|
std::cout << "min_odd = "
|
|
<< *CGAL::min_element_if(v.begin(),
|
|
v.end(),
|
|
CGAL::compose1_1(boost::bind2nd(std::greater< int >(), 0),
|
|
boost::bind2nd(std::modulus< int >(), 2)))
|
|
<< std::endl;
|
|
return 0;
|
|
}
|