summaryrefslogtreecommitdiff
path: root/impl/Min.h
blob: 9f17545c5f118ea83d91e41dfcfedc6ca0fcd87a (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef MIN_H
#define MIN_H

#include "Expression.h"

template<class T>
struct Min : public Expression<T> {
  Min(Expression<T>* left, Expression<T>* right)
    : _left(left), _right(right) { }

  T eval(const std::map<std::string, T>& mappings) const {
    T left = _left->eval(mappings);
    T right = _right->eval(mappings);
    return left < right ? left : right;
  }
  
  private:
  Expression<T>* _left;
  Expression<T>* _right;
};

#endif