parent
37b236869f
commit
1b707054a9
@ -0,0 +1,5 @@
|
||||
#include <limits>
|
||||
#include <algorithm>
|
||||
#include <cmath>
|
||||
#include "decoder_utils.h"
|
||||
|
@ -0,0 +1,15 @@
|
||||
#ifndef DECODER_UTILS_H
|
||||
#define DECODER_UTILS_H
|
||||
#pragma once
|
||||
#include <utility>
|
||||
|
||||
/*
|
||||
template <typename T1, typename T2>
|
||||
bool pair_comp_first_rev(const std::pair<T1, T2> a, const std::pair<T1, T2> b);
|
||||
|
||||
template <typename T1, typename T2>
|
||||
bool pair_comp_second_rev(const std::pair<T1, T2> a, const std::pair<T1, T2> b);
|
||||
|
||||
template <typename T> T log_sum_exp(T x, T y);
|
||||
*/
|
||||
#endif // DECODER_UTILS_H
|
Loading…
Reference in new issue