Artifact 593009ad4f7296b77008ffd0ff5fe9a8e1cebcc190b14b73e184d92a3d973ff2:
- Executable file mtt/lib/cr/hh/sign.hh — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 146) [annotate] [blame] [check-ins using] [more...]
- Executable file mttroot/mtt/lib/cr/hh/sign.hh — part of check-in [558c174ebf] at 2000-12-28 09:19:07 on branch origin/master — put under RCS (user: gawthrop@users.sourceforge.net, size: 146) [annotate] [blame] [check-ins using]
#ifndef SIGN_HH #define SIGN_HH template <class T> inline int sign(T x) { return ((x > 0) ? +1 : (x < 0) ? -1 : 0); } #endif // SIGN_HH