|
Revision 3941, 0.7 KB
(checked in by pmoura, 13 months ago)
|
|
Updated release number to 2.31.0 due to the incompatible changes in this version regarding compiler hooks.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | ================================================================ |
|---|
| 2 | Logtalk - Open source object-oriented logic programming language |
|---|
| 3 | Release 2.31.0 |
|---|
| 4 | |
|---|
| 5 | Copyright (c) 1998-2007 Paulo Moura. All Rights Reserved. |
|---|
| 6 | ================================================================ |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | To load all entities in this library load the random_loader.lgt utility |
|---|
| 10 | file: |
|---|
| 11 | |
|---|
| 12 | | ?- logtalk_load(random_loader). |
|---|
| 13 | |
|---|
| 14 | The object random implements a basic random number generators. |
|---|
| 15 | |
|---|
| 16 | If you need more than one random number generator, just define or |
|---|
| 17 | create new objects as extensions of the object random. Be sure to |
|---|
| 18 | initialize the seeds of the new random generator objects by using the |
|---|
| 19 | message reset_seed/0. |
|---|