Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:49:06

0001 /**
0002 QCurandStateMonolithicTest.cc
0003 ===============================
0004 
0005 Used at install time via::
0006 
0007     qudarap-prepare-installation () 
0008     { 
0009         local sizes=$(qudarap-prepare-sizes);
0010         local size;
0011         local seed=${QUDARAP_RNG_SEED:-0};
0012         local offset=${QUDARAP_RNG_OFFSET:-0};
0013         for size in $sizes;
0014         do
0015             QCurandStateMonolithic_SPEC=$size:$seed:$offset ${OPTICKS_PREFIX}/lib/QCurandStateMonolithicTest;
0016             rc=$?;
0017             [ $rc -ne 0 ] && return $rc;
0018         done;
0019         return 0
0020     }
0021 
0022 
0023 **/
0024 
0025 #include "OPTICKS_LOG.hh"
0026 #include "QCurandStateMonolithic.hh"
0027 
0028 int main(int argc, char** argv)
0029 {
0030     OPTICKS_LOG(argc, argv); 
0031 
0032     QCurandStateMonolithic* cs = QCurandStateMonolithic::Create() ; 
0033     LOG(info) << cs->desc() ;
0034 
0035     return 0 ; 
0036 }