Comment out deprecated stuff and fix corresponding tests
This may break your code if you did not pay attention to warnings in the previous release, the old code is still here in case you want to understand what's going on.
This commit is contained in:
parent
b01c7ac0f0
commit
5827444774
15 changed files with 31 additions and 47 deletions
|
|
@ -150,7 +150,8 @@ public :
|
|||
initialize(2*s);
|
||||
}
|
||||
|
||||
/** Re-initializes the Random Number Generator
|
||||
/* FIXME remove in next release
|
||||
** Re-initializes the Random Number Generator
|
||||
|
||||
This is the traditional seeding procedure. This version is deprecated and
|
||||
only provided for compatibility with old code. In new projects you should
|
||||
|
|
@ -159,11 +160,12 @@ public :
|
|||
@see reseed for details on usage of the seeding value.
|
||||
|
||||
@version old version (deprecated)
|
||||
*/
|
||||
*
|
||||
void oldReseed(uint32_t s)
|
||||
{
|
||||
initialize(s);
|
||||
}
|
||||
*/
|
||||
|
||||
/** Random number from unifom distribution
|
||||
|
||||
|
|
|
|||
Reference in a new issue