Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
more cosmectic changes - Adrien
[simgrid.git] / COPYING
1 Most of the SimGrid software was written internally by the team. This
2 software is distributed under the GNU lesser general public license
3 version 2.1, which you can find in the archive under the name
4 LICENSE-LGPL-2.1.
5
6 For any copyright year range specified as YYYY-ZZZZ in this package
7 note that the range specifies every single year in that closed interval.
8
9 Some perticular files distributed with the project have other
10 licenses. More specifically, these files are listed below, along with
11 their license.
12
13 The SimGrid logo is distributed under the CC-BY-SA license.
14
15 =========================================================================
16
17 The file src/xbt/snprintf.c contains this license text:
18
19 /*
20  * snprintf.c - a portable implementation of snprintf
21  *
22  * AUTHOR
23  *   Mark Martinec <mark.martinec@ijs.si>, April 1999.
24  *
25  *   Copyright 1999, Mark Martinec. All rights reserved.
26  *
27  * TERMS AND CONDITIONS
28  *   This program is free software; you can redistribute it and/or modify
29  *   it under the terms of the "Frontier Artistic License" which comes
30  *   with this Kit.
31  *
32  *   This program is distributed in the hope that it will be useful,
33  *   but WITHOUT ANY WARRANTY; without even the implied warranty
34  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
35  *   See the Frontier Artistic License for more details.
36  *
37  *   You should have received a copy of the Frontier Artistic License
38  *   with this Kit in the file named LICENSE.txt .
39  *   If not, I'll be glad to provide one.
40  *
41  */
42
43 =========================================================================
44
45 The exception handling mecanism (mainly living in src/xbt/ex.c and
46 include/xbt/ex.h) was adapted from code from Ralf S. Engelschall and
47 others in the OSSP project. The OSSP version has the following license:
48
49 **  OSSP ex - Exception Handling
50 **  Copyright (c) 2002-2007 Ralf S. Engelschall <rse@engelschall.com>
51 **  Copyright (c) 2002-2007 The OSSP Project <http://www.ossp.org/>
52 **
53 **  This file is part of OSSP ex, an exception handling library
54 **  which can be found at http://www.ossp.org/pkg/lib/ex/.
55 **
56 **  Permission to use, copy, modify, and distribute this software for
57 **  any purpose with or without fee is hereby granted, provided that
58 **  the above copyright notice and this permission notice appear in all
59 **  copies.
60 **
61 **  THIS SOFTWARE IS PROVIDED `AS IS'' AND ANY EXPRESSED OR IMPLIED
62 **  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
63 **  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
64 **  IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
65 **  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
66 **  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
67 **  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
68 **  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
69 **  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
70 **  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
71 **  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
72 **  SUCH DAMAGE.
73
74
75 =========================================================================
76
77 The sha implementation (src/xbt/xbt_sha.c:) was borowed and adapted
78 from the iksemel one (http://code.google.com/p/iksemel/). Both the
79 original and the current version of this code is distributed under the
80 LGPL v2.1 license.
81
82 =========================================================================
83
84 The xbt/mmalloc module was adapted from the mmalloc module of gdb.
85 Both the simgrid version and the original version is distributed under
86 the LGPL v2.1
87
88 This affects the files in directory src/xbt/mmalloc and
89 include/xbt/mmalloc.h
90
91 =========================================================================
92
93 In order to use ucontext with windows platform we had those files :
94         src/xbt/win32_ucontext.c
95         include/xbt/win32_ucontext.h
96
97 Their copyright is the following:
98
99 /*
100  *      win32-ucontext: Unix ucontext_t operations on Windows platforms
101  *      Copyright(C) 2007 Panagiotis E. Hadjidoukas
102  *
103  *      Contact Email: phadjido@cs.uoi.gr, xdoukas@ceid.upatras.gr
104  *
105  *      win32-ucontext is free software; you can redistribute it and/or
106  *      modify it under the terms of the GNU Lesser General Public
107  *      License as published by the Free Software Foundation; either
108  *      version 2 of the License, or (at your option) any later version.
109  *
110  *      win32-ucontext is distributed in the hope that it will be useful,
111  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
112  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
113  *      Lesser General Public License for more details.
114  *
115  *      You should have received a copy of the GNU Lesser General Public
116  *      License along with SimGrid in the file LICENSE-LGPL-2.1;
117  *      if not, write to the Free Software Foundation, Inc.,
118  *      51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
119  */
120
121 =========================================================================
122
123 Some examples for SMPI were borowed from an IBM test suite.
124 Their copyright is the following:
125 /**
126  * MESSAGE PASSING INTERFACE TEST CASE SUITE
127  *
128  * Copyright IBM Corp. 1995
129  *
130  * IBM Corp. hereby grants a non-exclusive license to use, copy, modify, and
131  *distribute this software for any purpose and without fee provided that the
132  *above copyright notice and the following paragraphs appear in all copies.
133
134  * IBM Corp. makes no representation that the test cases comprising this
135  * suite are correct or are an accurate representation of any standard.
136
137  * In no event shall IBM be liable to any party for direct, indirect, special
138  * incidental, or consequential damage arising out of the use of this software
139  * even if IBM Corp. has been advised of the possibility of such damage.
140
141  * IBM CORP. SPECIFICALLY DISCLAIMS ANY WARRANTIES INCLUDING, BUT NOT LIMITED
142  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
143  * PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS AND IBM
144  * CORP. HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
145  * ENHANCEMENTS, OR MODIFICATIONS.
146  * ***************************************************************************
147  **/
148
149 List of files:
150  examples/smpi/scatter.c
151  examples/smpi/reduce.c
152  examples/smpi/allreduce.c
153  examples/smpi/alltoall2.c
154
155
156 =========================================================================
157
158 examples/smpi/alltoallv.c was borowed from the MPICH2 test files. It
159 can be found for example in mpich2 1.2.1.1 under the name
160 test/mpi/coll/alltoallv.c The copyright mention is the following:
161 /*
162  *  (C) 2001 by Argonne National Laboratory.
163  *      See COPYRIGHT in top-level directory.
164  */
165 <------------- COPYRIGHT file in the top-level ----------------------->
166
167                                   COPYRIGHT
168
169 The following is a notice of limited availability of the code, and disclaimer
170 which must be included in the prologue of the code and in all source listings
171 of the code.
172
173 Copyright Notice
174  + 2002 University of Chicago
175
176 Permission is hereby granted to use, reproduce, prepare derivative works, and
177 to redistribute to others.  This software was authored by:
178
179 Argonne National Laboratory Group
180 W. Gropp: (630) 252-4318; FAX: (630) 252-5986; e-mail: gropp@mcs.anl.gov
181 E. Lusk:  (630) 252-7852; FAX: (630) 252-5986; e-mail: lusk@mcs.anl.gov
182 Mathematics and Computer Science Division
183 Argonne National Laboratory, Argonne IL 60439
184
185
186                               GOVERNMENT LICENSE
187
188 Portions of this material resulted from work developed under a U.S.
189 Government Contract and are subject to the following license: the Government
190 is granted for itself and others acting on its behalf a paid-up, nonexclusive,
191 irrevocable worldwide license in this computer software to reproduce, prepare
192 derivative works, and perform publicly and display publicly.
193
194                                   DISCLAIMER
195
196 This computer code material was prepared, in part, as an account of work
197 sponsored by an agency of the United States Government.  Neither the United
198 States, nor the University of Chicago, nor any of their employees, makes any
199 warranty express or implied, or assumes any legal liability or responsibility
200 for the accuracy, completeness, or usefulness of any information, apparatus,
201 product, or process disclosed, or represents that its use would not infringe
202 privately owned rights.
203
204 Portions of this code were written by Microsoft. Those portions are
205 Copyright (c) 2007 Microsoft Corporation. Microsoft grants permission to
206 use, reproduce, prepare derivative works, and to redistribute to
207 others. The code is licensed "as is." The User bears the risk of using
208 it. Microsoft gives no express warranties, guarantees or
209 conditions. To the extent permitted by law, Microsoft excludes the
210 implied warranties of merchantability, fitness for a particular
211 purpose and non-infringement.
212
213
214 <-------------------- end of MPICH2 COPYRIGHT file -------------------->
215
216
217 =========================================================================
218
219
220 The directory examples/smpi/NAS contains a tweaked version of the
221 NAS Parallel Benchmark Team. The original software were retrieved from
222 here: http://www.nas.nasa.gov/Software/NPB
223
224 According to [1], this code is probably distributed under the NASA
225 Open Source Agreement (NOSA) version 1.3. Its text can be found at [2].
226 [1] http://www.nas.nasa.gov/Resources/Software/Open-Source/opensource.html
227 [2] http://www.opensource.org/licenses/nasa1.3.php
228
229 The changes over the original version are minor, and can be
230 distributed under the LGPL license (v2.1) or NOSA (v1.3 or higher)
231 licences, at your option.
232
233 ==========================================================================
234