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: 3e4142e950ebbffb792fd1fa51f0b228ffebe092 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* ---------------------------------------------------------------- */
/* 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 <cmath>
#endif