You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
395 B
16 lines
395 B
#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
|