File: Field.cc

package info (click to toggle)
topcom 1.1.2%2Bds-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 31,788 kB
  • sloc: cpp: 37,616; sh: 4,262; makefile: 497; ansic: 49
file content (24 lines) | stat: -rw-r--r-- 570 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
////////////////////////////////////////////////////////////////////////////////
// 
// Field.cc
//
//    produced: 30/03/98 jr
// last change: 30/03/98 jr
// 
////////////////////////////////////////////////////////////////////////////////

#include "Field.hh"

namespace topcom {

  // #ifdef DOUBLE_ARITHMETIC
  // const Field Field::EPSILON  = Field(1E-99);
  // #endif

  const Field FieldConstants::ZERO     = Field(0);
  const Field FieldConstants::ONE      = Field(1);
  const Field FieldConstants::MINUSONE = Field(-1);

}; // namespace topcom

// eof Field.cc