| Diploma Thesis Percolation Simulation C++ Sourcecode Documentation |
#include <statistics.h>
Public Methods | |
| ELEM | linear (ELEM x, ELEM dummy) |
| ELEM | square (ELEM x, ELEM dummy) |
| ELEM | notzero (ELEM x, ELEM dummy) |
| ELEM | bitone_notzero (ELEM x, ELEM dummy) |
| ELEM | bit_notzero (ELEM x, ELEM bit) |
| ELEM | allbits_notzero (ELEM x, ELEM dim) |
| ELEM | shift (ELEM x, ELEM shift) |
|
||||||||||||||||
|
Definition at line 53 of file statistics.h. References pow().
00053 {return (x==(ELEM)pow((int)2,(int)dim)-1);};
|
|
||||||||||||||||
|
Definition at line 52 of file statistics.h. References pow().
00052 {return ((x&(ELEM)pow((int)2,(int)bit-1))!=0);};
|
|
||||||||||||||||
|
Definition at line 50 of file statistics.h.
00050 {return (x&1!=0);};
|
|
||||||||||||||||
|
Definition at line 44 of file statistics.h.
00044 {return (x);};
|
|
||||||||||||||||
|
Definition at line 49 of file statistics.h.
00049 {return (x!=0);};
|
|
||||||||||||||||
|
Definition at line 55 of file statistics.h. References statistics::manipdata< ELEM >::shift(). Referenced by statistics::manipdata< ELEM >::shift().
00055 {return (x+shift);};
|
|
||||||||||||||||
|
Definition at line 47 of file statistics.h.
00047 {return (x*x);};
|
| Diploma Thesis Sourcecode
Documentation check out the text and the executable binaries |