File: testCLHEP155.cc

package info (click to toggle)
clhep 2.4.7.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,084 kB
  • sloc: cpp: 45,279; sh: 1,343; perl: 28; makefile: 26
file content (12 lines) | stat: -rw-r--r-- 174 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12

#include "CLHEP/Random/MixMaxRng.h"

int main()
try {
  CLHEP::MixMaxRng eng(0); // Seeding with 0 is not supported; should throw.
  return 1;
}
catch(...) {
  return 0;
}