summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2011-05-18 14:44:37 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2011-05-18 14:44:37 +0000
commit5d5962441d2d78c63719f8ee154bee8581f5097e (patch)
tree346314f2f851d1f30ebb654ea233dc89f6691a22
parent78686d819110e5dadae91f5f96942f25413277f4 (diff)
downloadmpfr-5d5962441d2d78c63719f8ee154bee8581f5097e.tar.gz
Updated AUTHORS file and copyright notices (for more consistency).
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@7705 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r--AUTHORS6
-rw-r--r--src/acos.c2
-rw-r--r--src/asin.c2
-rw-r--r--src/atan.c2
-rw-r--r--src/atan2.c2
-rw-r--r--src/erf.c2
-rw-r--r--src/get_str.c1
-rw-r--r--src/mpn_exp.c1
-rw-r--r--src/round_near_x.c2
-rw-r--r--src/zeta.c2
-rw-r--r--tests/tacos.c2
-rw-r--r--tests/taway.c1
-rw-r--r--tests/tbuildopt.c2
-rw-r--r--tests/tdigamma.c2
-rw-r--r--tests/terf.c2
-rw-r--r--tests/tfprintf.c2
-rw-r--r--tests/tgamma.c2
-rw-r--r--tests/tget_ld_2exp.c1
-rw-r--r--tests/tli2.c2
-rw-r--r--tests/tprintf.c2
-rw-r--r--tests/tsprintf.c2
-rw-r--r--tests/tzeta.c2
22 files changed, 28 insertions, 16 deletions
diff --git a/AUTHORS b/AUTHORS
index 2a30b56ef..8da9145c3 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -4,13 +4,17 @@ Guillaume Hanrot Main author
Fabrice Rouillier Original version of mul_ui.c, gmp_op.c
Paul Zimmermann Main author
Sylvie Boldo Original version of agm.c and log.c
+Jean-Luc Rémy Original version of zeta.c
Emmanuel Jeandel Original version of exp3.c, const_pi.c, sincos.c
-Mathieu Dutour asin.c, atan.c and gamma.c
+Mathieu Dutour acos.c, asin.c, atan.c and gamma.c
Vincent Lefèvre Main author
David Daney Hyperbolic and inverse hyperbolic functions, base-2
and base-10 exponential and logarithm, factorial
+Alain Delplanque Rewritten get_str.c
+Ludovic Meunier Error function (erf.c)
Patrick Pélissier Main author
Laurent Fousse Original version of sum.c
+Damien Stehlé Function mpfr_get_ld_2exp
Philippe Théveny Main author
Sylvain Chevillard Original version of ai.c
diff --git a/src/acos.c b/src/acos.c
index 9699d4ea7..b81c1b46d 100644
--- a/src/acos.c
+++ b/src/acos.c
@@ -3,7 +3,7 @@
Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
Contributed by the Arenaire and Caramel projects, INRIA.
-This file is part of the GNU MPFR Library, and was contributed by Mathieu Dutour.
+This file is part of the GNU MPFR Library.
The GNU MPFR Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
diff --git a/src/asin.c b/src/asin.c
index 3b9f3797c..e16d08761 100644
--- a/src/asin.c
+++ b/src/asin.c
@@ -3,7 +3,7 @@
Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
Contributed by the Arenaire and Caramel projects, INRIA.
-This file is part of the GNU MPFR Library, and was contributed by Mathieu Dutour.
+This file is part of the GNU MPFR Library.
The GNU MPFR Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
diff --git a/src/atan.c b/src/atan.c
index 9090f14f1..e717c43ce 100644
--- a/src/atan.c
+++ b/src/atan.c
@@ -3,7 +3,7 @@
Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
Contributed by the Arenaire and Caramel projects, INRIA.
-This file is part of the GNU MPFR Library, and was contributed by Mathieu Dutour.
+This file is part of the GNU MPFR Library.
The GNU MPFR Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
diff --git a/src/atan2.c b/src/atan2.c
index a88a8f914..070788935 100644
--- a/src/atan2.c
+++ b/src/atan2.c
@@ -3,7 +3,7 @@
Copyright 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
Contributed by the Arenaire and Caramel projects, INRIA.
-This file is part of the GNU MPFR Library, and was contributed by Mathieu Dutour.
+This file is part of the GNU MPFR Library.
The GNU MPFR Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
diff --git a/src/erf.c b/src/erf.c
index 0f55d1697..0e313eb22 100644
--- a/src/erf.c
+++ b/src/erf.c
@@ -1,7 +1,7 @@
/* mpfr_erf -- error function of a floating-point number
Copyright 2001, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
-Contributed by Ludovic Meunier and Paul Zimmermann.
+Contributed by the Arenaire and Caramel projects, INRIA.
This file is part of the GNU MPFR Library.
diff --git a/src/get_str.c b/src/get_str.c
index 23eb04129..b498abaa2 100644
--- a/src/get_str.c
+++ b/src/get_str.c
@@ -2,7 +2,6 @@
Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
Contributed by the Arenaire and Caramel projects, INRIA.
-Contributed by Alain Delplanque and Paul Zimmermann.
This file is part of the GNU MPFR Library.
diff --git a/src/mpn_exp.c b/src/mpn_exp.c
index 777fc6eec..4997ff602 100644
--- a/src/mpn_exp.c
+++ b/src/mpn_exp.c
@@ -2,7 +2,6 @@
Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
Contributed by the Arenaire and Caramel projects, INRIA.
-Contributed by Alain Delplanque and Paul Zimmermann.
This file is part of the GNU MPFR Library.
diff --git a/src/round_near_x.c b/src/round_near_x.c
index a9b25f72a..7e36201c0 100644
--- a/src/round_near_x.c
+++ b/src/round_near_x.c
@@ -3,7 +3,7 @@
Copyright 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
Contributed by the Arenaire and Caramel projects, INRIA.
-This file is part of the GNU MPFR Library, and was contributed by Mathieu Dutour.
+This file is part of the GNU MPFR Library.
The GNU MPFR Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
diff --git a/src/zeta.c b/src/zeta.c
index 13de63a25..e5450a3b1 100644
--- a/src/zeta.c
+++ b/src/zeta.c
@@ -1,7 +1,7 @@
/* mpfr_zeta -- compute the Riemann Zeta function
Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
-Contributed by Jean-Luc Re'my and the Spaces project, INRIA Lorraine.
+Contributed by the Arenaire and Caramel projects, INRIA.
This file is part of the GNU MPFR Library.
diff --git a/tests/tacos.c b/tests/tacos.c
index 195288c54..2424d2b04 100644
--- a/tests/tacos.c
+++ b/tests/tacos.c
@@ -1,7 +1,7 @@
/* Test file for mpfr_acos.
Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
-Contributed by Mathieu Dutour.
+Contributed by the Arenaire and Caramel projects, INRIA.
This file is part of the GNU MPFR Library.
diff --git a/tests/taway.c b/tests/taway.c
index 51f46640b..2142ba900 100644
--- a/tests/taway.c
+++ b/tests/taway.c
@@ -2,7 +2,6 @@
Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
Contributed by the Arenaire and Caramel projects, INRIA.
-Adapted from reuse.c.
This file is part of the GNU MPFR Library.
diff --git a/tests/tbuildopt.c b/tests/tbuildopt.c
index 64935cf57..67ab30462 100644
--- a/tests/tbuildopt.c
+++ b/tests/tbuildopt.c
@@ -4,6 +4,8 @@
Copyright 2009, 2010, 2011 Free Software Foundation, Inc.
Contributed by the Arenaire and Caramel projects, INRIA.
+This file is part of the GNU MPFR Library.
+
The GNU MPFR Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 3 of the License, or (at your
diff --git a/tests/tdigamma.c b/tests/tdigamma.c
index a06a21fb4..90402b0fa 100644
--- a/tests/tdigamma.c
+++ b/tests/tdigamma.c
@@ -3,6 +3,8 @@
Copyright 2009, 2010, 2011 Free Software Foundation, Inc.
Contributed by the Arenaire and Caramel projects, INRIA.
+This file is part of the GNU MPFR Library.
+
The GNU MPFR Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 3 of the License, or (at your
diff --git a/tests/terf.c b/tests/terf.c
index 7736ec866..f9b17f4aa 100644
--- a/tests/terf.c
+++ b/tests/terf.c
@@ -1,7 +1,7 @@
/* Test file for mpfr_erf and mpfr_erfc.
Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
-Contributed by Ludovic Meunier and Paul Zimmermann.
+Contributed by the Arenaire and Caramel projects, INRIA.
This file is part of the GNU MPFR Library.
diff --git a/tests/tfprintf.c b/tests/tfprintf.c
index 2a79ae995..d6b0e1423 100644
--- a/tests/tfprintf.c
+++ b/tests/tfprintf.c
@@ -3,6 +3,8 @@
Copyright 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
Contributed by the Arenaire and Caramel projects, INRIA.
+This file is part of the GNU MPFR Library.
+
The GNU MPFR Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 3 of the License, or (at your
diff --git a/tests/tgamma.c b/tests/tgamma.c
index 57b56daff..58ae43d0b 100644
--- a/tests/tgamma.c
+++ b/tests/tgamma.c
@@ -3,7 +3,7 @@
Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
Contributed by the Arenaire and Caramel projects, INRIA.
-This file is part of the GNU MPFR Library, and was contributed by Mathieu Dutour.
+This file is part of the GNU MPFR Library.
The GNU MPFR Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
diff --git a/tests/tget_ld_2exp.c b/tests/tget_ld_2exp.c
index aa409b93c..b9b47ba84 100644
--- a/tests/tget_ld_2exp.c
+++ b/tests/tget_ld_2exp.c
@@ -4,7 +4,6 @@ Copyright 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
Contributed by the Arenaire and Caramel projects, INRIA.
This file is part of the GNU MPFR Library.
-Contributed by Damien Stehle.
The GNU MPFR Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
diff --git a/tests/tli2.c b/tests/tli2.c
index 5ea122cb4..551891181 100644
--- a/tests/tli2.c
+++ b/tests/tli2.c
@@ -3,6 +3,8 @@
Copyright 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
Contributed by the Arenaire and Caramel projects, INRIA.
+This file is part of the GNU MPFR Library.
+
The GNU MPFR Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 3 of the License, or (at your
diff --git a/tests/tprintf.c b/tests/tprintf.c
index 17a004061..d2913264b 100644
--- a/tests/tprintf.c
+++ b/tests/tprintf.c
@@ -3,6 +3,8 @@
Copyright 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
Contributed by the Arenaire and Caramel projects, INRIA.
+This file is part of the GNU MPFR Library.
+
The GNU MPFR Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 3 of the License, or (at your
diff --git a/tests/tsprintf.c b/tests/tsprintf.c
index 49ec7a2f4..d5d29a57d 100644
--- a/tests/tsprintf.c
+++ b/tests/tsprintf.c
@@ -4,6 +4,8 @@
Copyright 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
Contributed by the Arenaire and Caramel projects, INRIA.
+This file is part of the GNU MPFR Library.
+
The GNU MPFR Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 3 of the License, or (at your
diff --git a/tests/tzeta.c b/tests/tzeta.c
index 886aa5b5b..dc2e6b544 100644
--- a/tests/tzeta.c
+++ b/tests/tzeta.c
@@ -1,7 +1,7 @@
/* tzeta -- test file for the Riemann Zeta function
Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
-Contributed by Jean-Luc Re'my and the Spaces project, INRIA Lorraine.
+Contributed by the Arenaire and Caramel projects, INRIA.
This file is part of the GNU MPFR Library.