Skip to content

Commit

Permalink
program O.K
Browse files Browse the repository at this point in the history
  • Loading branch information
Saito committed May 26, 2011
0 parents commit 758c908
Show file tree
Hide file tree
Showing 33 changed files with 7,649 additions and 0 deletions.
29 changes: 29 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
Copyright (c) 2011 Mutsuo Saito, Makoto Matsumoto, Hiroshima
University and The University of Tokyo. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
* Neither the name of the Hiroshima University nor the names of
its contributors may be used to endorse or promote products
derived from this software without specific prior written
permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 changes: 25 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#for GNU make

FILES = FILES.txt \
LICENSE.txt \
CHANGE-LOG.txt \
README.txt \

VERSION = 1.0
DIR = tinymt-src-${VERSION}

.PHONY : tar.gz
tar.gz: $(FILES)
mkdir ${DIR}
tar czvf ${DIR}.tar.gz ${DIR}/*
rm -rf ${DIR}

.PHONY : zip
zip: $(FILES)
mkdir ${DIR}
rm ${DIR}.zip
zip -r ${DIR}.zip ${DIR}/*
rm -rf ${DIR}

clean:
rm -f *.o *~
34 changes: 34 additions & 0 deletions README.jp.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
=================================================================
tinymt ver. 1.0
2011.5.16

Tiny Mersenne Twister(tinymt).
Pseudo random number generators whose periods are 2^127-1.

Mutsuo Saito (Hiroshima University) and
Makoto Matsumoto (The University of Tokyo)

Copyright (C) 2011 Mutsuo Saito, Makoto Matsumoto,
Hiroshima University and The University of Tokyo.
All rights reserved.

The 3-clause BSD License is applied to this software, see
LICENSE.txt
=================================================================

�ɥ�����Ȥϡ����Ȥ��Ѹ줬ʸˡŪ���������ʤ����Ǥ⡢�Ѹ��Ǥ�������
��ΤǤ���

doxygen �ˤ�ä��������줿�ɥ�����ȡʱѸ�ˤ���html �ǥ��쥯�ȥ��
���ˤ���Τǻ��Ȥ��Ƥ���������

���Υץ������ϡ�C�������Ѥ�ư���Ϥ��Ǥ���(c99�ε�ǽ�ΰ�����ȤäƤ��ޤ�����
������ɬ�פʤ櫓�ǤϤ���ޤ����

�����������ɤ��ѹ������ꤷ�ʤ��ä��ꤷ�Ƥ��Υץ�����������ۤ�������
�ϡ�LICENSE.txt�ʱѸ�ˤ��ɤ�Dz�������

�ե�������ѹ���ä��ƺ����ۤ�����ϡ��ɤ���������ʪ����ˤ��ʤ���Ϣ
�����񤤤Ƥ����ơ����꤬���ä��Ȥ��ϡ��䤿���ǤϤʤ������ʤ��ˤޤ�Ϣ
������褦�����ѼԤ������Ʋ�������

26 changes: 26 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
=================================================================
tinymt ver. 1.0
2011.5.16

Tiny Mersenne Twister(tinymt).
Pseudo random number generators whose periods are 2^127-1.

Mutsuo Saito (Hiroshima University) and
Makoto Matsumoto (The University of Tokyo)

Copyright (C) 2011 Mutsuo Saito, Makoto Matsumoto,
Hiroshima University and The University of Tokyo.
All rights reserved.

The 3-clause BSD License is applied to this software, see
LICENSE.txt
=================================================================
The documents written in English is the official one.

To see documents, see html/index.html.

If you want to redistribute and/or change source files, see LICENSE.txt.

When you change these files and redistribute them, PLEASE write your
e-mail address in redistribution and write to contact YOU first if
users of your changed source encounter troubles.
Loading

0 comments on commit 758c908

Please sign in to comment.