Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mymath.h « src « mgizapp - github.com/moses-smt/mgiza.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f8ad926c670563c2707c943ec09a35e4455206a0 (plain)
1
2
3
4
5
6
7
8
9
/* ---------------------------------------------------------------- */
/* Copyright 1998 (c) by RWTH Aachen - Lehrstuhl fuer Informatik VI */
/* Franz Josef Och                                                  */
/* ---------------------------------------------------------------- */
#ifndef HEADER_MYMATH_DEFINED
#define HEADER_MYMATH_DEFINED
inline double mfabs(double x){return (x<0)?(-x):x;}
#include <math.h>
#endif