CLHEP 2.4.6.4
C++ Class Library for High Energy Physics
Loading...
Searching...
No Matches
testCLHEP155.cc
Go to the documentation of this file.
1
2#include "CLHEP/Random/MixMaxRng.h"
3
4int main()
5try {
6 CLHEP::MixMaxRng eng(0); // Seeding with 0 is not supported; should throw.
7 return 1;
8}
9catch(...) {
10 return 0;
11}
12
int main()
Definition: testCLHEP155.cc:4