diff options
author | graehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-08-21 03:07:42 +0000 |
---|---|---|
committer | graehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-08-21 03:07:42 +0000 |
commit | ca9c1f40cad1f99f00beb2871dc50bf7222d44d4 (patch) | |
tree | 183f19411904bb2a23cc5f916f1887a484c6574b /utils/best.h | |
parent | d8dbfdcc460754bd5f45182495ff14b39b94b24d (diff) |
agenda for fsa
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@612 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'utils/best.h')
-rwxr-xr-x | utils/best.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/utils/best.h b/utils/best.h new file mode 100755 index 00000000..8ff896bb --- /dev/null +++ b/utils/best.h @@ -0,0 +1,13 @@ +#ifndef UTILS__BEST_H +#define UTILS__BEST_H + +#include "max_plus.h" + +typedef MaxPlus<double> best_t; + +inline bool operator <(best_t const& a,best_t const& b) { + return a.v_>b.v_; // intentionally reversed, so default min-heap, sort, etc. put best first. +} + + +#endif |