gsl-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Scientific Library branch, master, updated. release-1-0-2906-g


From: Patrick Alken
Subject: [SCM] GNU Scientific Library branch, master, updated. release-1-0-2906-gf653e9b
Date: Sat, 11 Sep 2021 00:09:37 -0400 (EDT)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Scientific Library".

The branch, master has been updated
       via  f653e9b0d4a3f4a69a3cc1bb2e61979ea53f8dbe (commit)
       via  41b3fc99f303b7b0c29b7ed446b939571bd9e7ce (commit)
       via  ed23edf3f88bf6b3d7d254521b19056bee6ce1ea (commit)
       via  38b269640274751d3839db38976639882413b81b (commit)
       via  aa68dc264f3d2b979eea23fa6232c1555b329e60 (commit)
       via  9b9776be914f20a29fafb287edd72c9679d972cf (commit)
       via  701ec842b5993a7f428c56e40a4ae6bad0a4a702 (commit)
       via  e5da2e1881a969005a62121b0808e3aad1bc07d4 (commit)
       via  31f173aa01f20d843cc86743e77bf5fd87e0e746 (commit)
       via  c9fdb03a86572961b9ec4120bdf9461d386fc3d2 (commit)
       via  3dac54c77076ced039ca68cdc301103875bef697 (commit)
       via  a29e17ce7955806bc9e231526da1fc609d5bfe58 (commit)
      from  659dcc296cc31532d133d5374ce1baf82f280610 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit f653e9b0d4a3f4a69a3cc1bb2e61979ea53f8dbe
Author: Patrick Alken <alken@colorado.edu>
Date:   Fri Sep 10 22:09:20 2021 -0600

    updates to multifit/lcurve

commit 41b3fc99f303b7b0c29b7ed446b939571bd9e7ce
Author: Patrick Alken <alken@colorado.edu>
Date:   Tue Aug 31 22:24:23 2021 -0600

    add more tests for LU

commit ed23edf3f88bf6b3d7d254521b19056bee6ce1ea
Author: Patrick Alken <alken@colorado.edu>
Date:   Tue Aug 31 20:32:59 2021 -0600

    bug fix #61094 (reported by A. Cheylus)

commit 38b269640274751d3839db38976639882413b81b
Author: Patrick Alken <alken@colorado.edu>
Date:   Tue Aug 31 13:23:11 2021 -0600

    add gsl_matrix_complex_conjugate()

commit aa68dc264f3d2b979eea23fa6232c1555b329e60
Author: Patrick Alken <alken@colorado.edu>
Date:   Mon Aug 23 14:38:19 2021 -0600

    update spherical harmonic documentation; add gsl_integration_lebedev_n

commit 9b9776be914f20a29fafb287edd72c9679d972cf
Author: Patrick Alken <alken@colorado.edu>
Date:   Fri Aug 20 11:03:36 2021 -0600

    add Lebedev quadrature

commit 701ec842b5993a7f428c56e40a4ae6bad0a4a702
Author: Patrick Alken <alken@colorado.edu>
Date:   Thu Aug 19 23:11:45 2021 -0600

    minor fix

commit e5da2e1881a969005a62121b0808e3aad1bc07d4
Author: Patrick Alken <alken@colorado.edu>
Date:   Sun Jun 13 12:25:34 2021 -0600

    fix doc bug for gsl_matrix_complex_conjtrans_memcpy

commit 31f173aa01f20d843cc86743e77bf5fd87e0e746
Author: Patrick Alken <alken@colorado.edu>
Date:   Sun Jun 13 09:59:36 2021 -0600

    document gsl_vector_complex_conj_memcpy

commit c9fdb03a86572961b9ec4120bdf9461d386fc3d2
Author: Patrick Alken <alken@colorado.edu>
Date:   Sun Jun 13 09:48:51 2021 -0600

    add gsl_vector_complex_conj_memcpy

commit 3dac54c77076ced039ca68cdc301103875bef697
Author: Patrick Alken <alken@colorado.edu>
Date:   Sat Jun 5 11:17:37 2021 -0600

    update bspline module

commit a29e17ce7955806bc9e231526da1fc609d5bfe58
Author: Patrick Alken <alken@colorado.edu>
Date:   Fri Jun 4 23:59:20 2021 -0600

    update for next release

-----------------------------------------------------------------------

Summary of changes:
 HACKING                                         |    3 +
 NEWS                                            |   15 +-
 bspline/Makefile.am                             |    6 +-
 bspline/TODO                                    |   18 +-
 bspline/bspline.c                               | 1039 ++---
 bspline/bspline.h                               |   26 -
 bspline/{bspline.c => eval.c}                   |  786 ++--
 bspline/gram.c                                  |  261 ++
 bspline/greville.c                              |   36 +-
 bspline/gsl_bspline.h                           |  252 +-
 {linalg => bspline}/inline.c                    |    8 +-
 bspline/integ.c                                 |  191 +
 bspline/ls.c                                    |  770 ++++
 bspline/old.c                                   |  252 ++
 bspline/test.c                                  |  451 +-
 bspline/test_gram.c                             |  232 +
 bspline/test_greville.c                         |  298 ++
 bspline/test_integ.c                            |  107 +
 bspline/test_interp.c                           |  102 +
 bspline/test_ls.c                               |  331 ++
 configure.ac                                    |    2 +-
 doc/Makefile.am                                 |   11 +-
 doc/bspline.rst                                 | 1002 ++++-
 doc/examples/Makefile.am                        |    6 +-
 doc/examples/bspline.c                          |  124 -
 doc/examples/bspline.err                        |    1 -
 doc/examples/bspline.txt                        |  353 --
 doc/examples/bspline_deriv.c                    |   53 +
 doc/examples/bspline_deriv.txt                  | 1222 +++++
 doc/examples/bspline_gram.c                     |  140 +
 doc/examples/bspline_gram1.txt                  |  802 ++++
 doc/examples/bspline_gram2.txt                  |  802 ++++
 doc/examples/bspline_interp.c                   |   61 +
 doc/examples/bspline_interp.txt                 |  171 +
 doc/examples/bspline_knots.c                    |   64 +
 doc/examples/bspline_knots.txt                  | 1208 +++++
 doc/examples/bspline_knots_data.txt             |   72 +
 doc/examples/bspline_lsbreak.c                  |   90 +
 doc/examples/bspline_lsbreak.err                |    2 +
 doc/examples/bspline_lsbreak.txt                |  653 +++
 doc/examples/bspline_lsend.c                    |  147 +
 doc/examples/bspline_lsend.err                  |    2 +
 doc/examples/bspline_lsend.txt                  | 2502 +++++++++++
 doc/examples/bspline_lsorder.c                  |   94 +
 doc/examples/bspline_lsorder.txt                |  653 +++
 doc/examples/bspline_per.c                      |  111 +
 doc/examples/bspline_per.err                    |   14 +
 doc/examples/bspline_per.txt                    | 1131 +++++
 doc/examples/bspline_proj.c                     |   66 +
 doc/examples/bspline_proj.txt                   |  400 ++
 doc/images/bspline.png                          |  Bin 24380 -> 0 bytes
 doc/images/bspline_deriv.png                    |  Bin 0 -> 253000 bytes
 doc/images/bspline_gram1.png                    |  Bin 0 -> 82760 bytes
 doc/images/bspline_gram2.png                    |  Bin 0 -> 85487 bytes
 doc/images/bspline_interp.png                   |  Bin 0 -> 36933 bytes
 doc/images/bspline_knots.png                    |  Bin 0 -> 430752 bytes
 doc/images/bspline_lsbreak.png                  |  Bin 0 -> 87252 bytes
 doc/images/bspline_lsend.png                    |  Bin 0 -> 111474 bytes
 doc/images/bspline_lsorder.png                  |  Bin 0 -> 110760 bytes
 doc/images/bspline_per.png                      |  Bin 0 -> 79677 bytes
 doc/images/bspline_proj.png                     |  Bin 0 -> 49813 bytes
 doc/integration.rst                             |  129 +
 doc/linalg.rst                                  |    6 +
 doc/lls.rst                                     |   31 +-
 doc/plots/plot_bspline.gp                       |  192 +-
 doc/plots/plot_bspline_gram.gp                  |   30 +
 doc/plots/plot_bspline_interp.gp                |   14 +
 doc/plots/plot_bspline_lsend.gp                 |   60 +
 doc/plots/plot_bspline_per.gp                   |   15 +
 doc/specfunc-legendre.rst                       |   44 +-
 doc/vectors.rst                                 |   13 +-
 integration/Makefile.am                         |    4 +-
 integration/gsl_integration.h                   |   19 +
 integration/lebedev.c                           | 5482 +++++++++++++++++++++++
 integration/test.c                              |   76 +
 linalg/choleskyc.c                              |    1 -
 linalg/lu.c                                     |   53 +-
 linalg/luc.c                                    |   55 +-
 linalg/test_lu.c                                |   34 +-
 linalg/test_luc.c                               |   51 +-
 matrix/gsl_matrix_complex_double.h              |    1 +
 matrix/gsl_matrix_complex_float.h               |    1 +
 matrix/gsl_matrix_complex_long_double.h         |    1 +
 matrix/oper_complex_source.c                    |   26 +-
 matrix/test_complex_source.c                    |   24 +
 multifit/gcv.c                                  |    4 +-
 multifit/gsl_multifit.h                         |    5 +
 multifit/multireg.c                             |  262 +-
 scripts/test_examples.sh                        |   10 +-
 vector/Makefile.am                              |    2 +-
 vector/copy.c                                   |    3 +
 vector/{copy_source.c => copy_complex_source.c} |   43 +-
 vector/gsl_vector_complex_double.h              |    1 +
 vector/gsl_vector_complex_float.h               |    1 +
 vector/gsl_vector_complex_long_double.h         |    1 +
 vector/test_complex_source.c                    |   17 +
 96 files changed, 21663 insertions(+), 2191 deletions(-)
 delete mode 100644 bspline/bspline.h
 copy bspline/{bspline.c => eval.c} (53%)
 create mode 100644 bspline/gram.c
 copy {linalg => bspline}/inline.c (86%)
 create mode 100644 bspline/integ.c
 create mode 100644 bspline/ls.c
 create mode 100644 bspline/old.c
 create mode 100644 bspline/test_gram.c
 create mode 100644 bspline/test_greville.c
 create mode 100644 bspline/test_integ.c
 create mode 100644 bspline/test_interp.c
 create mode 100644 bspline/test_ls.c
 delete mode 100644 doc/examples/bspline.c
 delete mode 100644 doc/examples/bspline.err
 delete mode 100644 doc/examples/bspline.txt
 create mode 100644 doc/examples/bspline_deriv.c
 create mode 100644 doc/examples/bspline_deriv.txt
 create mode 100644 doc/examples/bspline_gram.c
 create mode 100644 doc/examples/bspline_gram1.txt
 create mode 100644 doc/examples/bspline_gram2.txt
 create mode 100644 doc/examples/bspline_interp.c
 create mode 100644 doc/examples/bspline_interp.txt
 create mode 100644 doc/examples/bspline_knots.c
 create mode 100644 doc/examples/bspline_knots.txt
 create mode 100644 doc/examples/bspline_knots_data.txt
 create mode 100644 doc/examples/bspline_lsbreak.c
 create mode 100644 doc/examples/bspline_lsbreak.err
 create mode 100644 doc/examples/bspline_lsbreak.txt
 create mode 100644 doc/examples/bspline_lsend.c
 create mode 100644 doc/examples/bspline_lsend.err
 create mode 100644 doc/examples/bspline_lsend.txt
 create mode 100644 doc/examples/bspline_lsorder.c
 create mode 100644 doc/examples/bspline_lsorder.txt
 create mode 100644 doc/examples/bspline_per.c
 create mode 100644 doc/examples/bspline_per.err
 create mode 100644 doc/examples/bspline_per.txt
 create mode 100644 doc/examples/bspline_proj.c
 create mode 100644 doc/examples/bspline_proj.txt
 delete mode 100644 doc/images/bspline.png
 create mode 100644 doc/images/bspline_deriv.png
 create mode 100644 doc/images/bspline_gram1.png
 create mode 100644 doc/images/bspline_gram2.png
 create mode 100644 doc/images/bspline_interp.png
 create mode 100644 doc/images/bspline_knots.png
 create mode 100644 doc/images/bspline_lsbreak.png
 create mode 100644 doc/images/bspline_lsend.png
 create mode 100644 doc/images/bspline_lsorder.png
 create mode 100644 doc/images/bspline_per.png
 create mode 100644 doc/images/bspline_proj.png
 create mode 100755 doc/plots/plot_bspline_gram.gp
 create mode 100755 doc/plots/plot_bspline_interp.gp
 create mode 100755 doc/plots/plot_bspline_lsend.gp
 create mode 100755 doc/plots/plot_bspline_per.gp
 create mode 100644 integration/lebedev.c
 copy vector/{copy_source.c => copy_complex_source.c} (55%)


hooks/post-receive
-- 
GNU Scientific Library



reply via email to

[Prev in Thread] Current Thread [Next in Thread]