This documentation is automatically generated by online-judge-tools/verification-helper
View the Project on GitHub kmyk/competitive-programming-library
#include "monoids/min.hpp"
#pragma once
#include <algorithm>
#include <limits>
template <class T>
struct min_monoid {
typedef T value_type;
value_type unit() const { return std::numeric_limits<T>::max(); }
value_type mult(value_type a, value_type b) const { return std::min(a, b); }
};
#line 2 "monoids/min.hpp"
#include <algorithm>
#include <limits>
template <class T>
struct min_monoid {
typedef T value_type;
value_type unit() const { return std::numeric_limits<T>::max(); }
value_type mult(value_type a, value_type b) const { return std::min(a, b); }
};