include.dists.using.m
上传用户:shenzhenrh
上传日期:2013-05-12
资源大小:2904k
文件大小:1k
源码类别:

信息检索与抽取

开发平台:

Unix_Linux

  1. // dists.include.using.m
  2. // Code common to all distributions
  3. // Random version 0.8
  4. // 
  5. -(id <BasicRandomGenerator>) getGenerator {
  6.    return randomGenerator;
  7. }
  8. -(unsigned) getVirtualGenerator {
  9.    return virtualGenerator;
  10. }
  11. -(BOOL) getOptionsInitialized {
  12.    return optionsInitialized;
  13. }
  14. -(unsigned long long int) getCurrentCount {
  15.    return currentCount;
  16. }
  17. -(unsigned) getStateSize {
  18.    return stateSize;
  19. }
  20. -(const char *) getName {
  21.    return SSTRDUP (distName);
  22. }
  23. -(unsigned) getMagic {
  24.    return distMagic;
  25. }
  26. // dists.include.using.m