Browse code

add Christoph Groth as 'adaptive' author

Bas Nijholt authored on 22/02/2018 20:34:42 • Joseph Weston committed on 22/02/2018 23:52:07
Showing 4 changed files
... ...
@@ -1,7 +1,8 @@
1 1
 # Adaptive Authors
2
-Below is a list of the main contributors to Adaptive:
2
+Below is a list of the contributors to Adaptive:
3 3
 
4 4
 + [Anton Akhmerov](<https://antonakhmerov.org>)
5
++ [Christoph Groth](<http://inac.cea.fr/Pisp/christoph.groth/>)
5 6
 + [Bas Nijholt](<http://nijho.lt>)
6 7
 + [Joseph Weston](<https://joseph.weston.cloud>)
7 8
 
... ...
@@ -92,7 +92,6 @@ in the repository.
92 92
 ## Credits
93 93
 We would like to give credits to the following people:
94 94
 - Pedro Gonnet for his implementation of [`CQUAD`](https://www.gnu.org/software/gsl/manual/html_node/CQUAD-doubly_002dadaptive-integration.html), "Algorithm 4" as described in "Increasing the Reliability of Adaptive Quadrature Using Explicit Interpolants", P. Gonnet, ACM Transactions on Mathematical Software, 37 (3), art. no. 26, 2010.
95
-- Christoph Groth for his Python implementation of [`CQUAD`](https://gitlab.kwant-project.org/cwg/python-cquad) which served as basis for the [`IntegratorLearner`](adaptive/learner/integrator_learner.py).
96 95
 - Pauli Virtanen for his `AdaptiveTriSampling` script (no longer available online since SciPy Central went down) which served as inspiration for the [`Learner2D`](adaptive/learner/learner2D.py).
97 96
 
98 97
 For general discussion, we have a [Gitter chat channel](https://gitter.im/python-adaptive/adaptive). If you find any bugs or have any feature suggestions please file a GitLab [issue](https://gitlab.kwant-project.org/qt/adaptive/issues/new?issue) or submit a [merge request](https://gitlab.kwant-project.org/qt/adaptive/merge_requests).
... ...
@@ -1,5 +1,4 @@
1 1
 # -*- coding: utf-8 -*-
2
-# Copyright 2017 Christoph Groth
3 2
 # Copyright 2017 `adaptive` authors
4 3
 
5 4
 from fractions import Fraction
... ...
@@ -1,6 +1,5 @@
1 1
 # -*- coding: utf-8 -*-
2 2
 # Copyright 2010 Pedro Gonnet
3
-# Copyright 2017 Christoph Groth
4 3
 # Copyright 2017 `adaptive` authors
5 4
 
6 5
 from collections import defaultdict