summaryrefslogtreecommitdiff
path: root/utils/maybe_update_bound.h
blob: d57215d0bb10cc607cd29750f485494ce810cd2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef MAYBE_UPDATE_BOUND_H
#define MAYBE_UPDATE_BOUND_H

template <class To,class From>
inline void maybe_increase_max(To &to,const From &from) {
    if (to<from)
        to=from;
}

template <class To,class From>
inline void maybe_decrease_min(To &to,const From &from) {
    if (from<to)
        to=from;
}


#endif