Go to the first, previous, next, last section, table of contents.


mt_save, mt_load

mt_save(fname)
:: 乱数生成器の現在の状態をファイルにセーブする.
mt_load(fname)
:: ファイルにセーブされた乱数生成器の状態をロードする.
return
0 または 1
fname
文字列
[340] random();
3510405877
[341] mt_save("/tmp/mt_state");
1
[342] random();
4290933890
[343] quit;
% asir
This is Asir, Version 991108.
Copyright (C) FUJITSU LABORATORIES LIMITED.
3 March 1994. All rights reserved.
[340] mt_load("/tmp/mt_state");
1
[341] random();
4290933890
参照
section random, section lrandom.


Go to the first, previous, next, last section, table of contents.