|
|
|||
File indexing completed on 2026-04-09 07:49:46
0001 #include <cstdlib> 0002 #include "SRand.hh" 0003 0004 0005 /** 0006 SRand::pick_random_category 0007 ---------------------------- 0008 0009 Randomly returns value : 0,..,num_cat-1 0010 0011 **/ 0012 0013 unsigned SRand::pick_random_category(unsigned num_cat) 0014 { 0015 unsigned u = rand() ; 0016 return u % num_cat ; 0017 }
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|