gsl-cvs
[Top][All Lists]
Advanced

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

[Gsl-cvs] [SCM] GNU Scientific Library branch, master, updated. release-


From: Patrick Alken
Subject: [Gsl-cvs] [SCM] GNU Scientific Library branch, master, updated. release-1-0-2771-g580e24c
Date: Tue, 27 Nov 2018 17:03:15 -0500 (EST)

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  580e24c352f6ac4ec40eb0db153dffae3a1a6152 (commit)
       via  032b4e861f7690dc853063661736db311390dc21 (commit)
       via  809308e707bd11834645fb5bb71e28650348e5e3 (commit)
       via  a567df86ba75fa6d9b19655efa7c050d3dc3e51c (commit)
       via  893d2255ddea9aae98e68a8d79871689f28149ab (commit)
       via  57b38a8dbfa0d976ad2d7e204ff9e9535c407bc1 (commit)
      from  4b54f23a518580cb36487a14597f653457d79f20 (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 580e24c352f6ac4ec40eb0db153dffae3a1a6152
Merge: a567df8 032b4e8
Author: Patrick Alken <address@hidden>
Date:   Tue Nov 27 14:51:55 2018 -0700

    Merge branch 'sparse'

commit 032b4e861f7690dc853063661736db311390dc21
Author: Patrick Alken <address@hidden>
Date:   Tue Nov 27 14:50:19 2018 -0700

    cleanup

commit 809308e707bd11834645fb5bb71e28650348e5e3
Author: Patrick Alken <address@hidden>
Date:   Tue Nov 27 14:28:16 2018 -0700

    add bst module; updated spmatrix module

commit a567df86ba75fa6d9b19655efa7c050d3dc3e51c
Author: Patrick Alken <address@hidden>
Date:   Wed Nov 14 14:36:14 2018 -0700

    update HACKING to include g++ test

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

Summary of changes:
 HACKING                                     |   1 +
 Makefile.am                                 |   4 +-
 NEWS                                        |   5 +
 bst/Makefile.am                             |  14 +
 bst/avl.c                                   | 996 ++++++++++++++++++++++++++++
 bst/bst.c                                   | 155 +++++
 bst/gsl_bst.h                               | 125 ++++
 bst/gsl_bst_avl.h                           |  72 ++
 bst/gsl_bst_rb.h                            |  73 ++
 bst/rb.c                                    | 991 +++++++++++++++++++++++++++
 bst/test.c                                  | 352 ++++++++++
 bst/trav.c                                  | 152 +++++
 configure.ac                                |   1 +
 doc/examples/spmatrix.c                     |   8 +-
 doc/spmatrix.rst                            | 283 ++++++--
 spblas/Makefile.am                          |   2 +-
 spblas/gsl_spblas.h                         |   4 +-
 spblas/spdgemm.c                            |  27 +-
 spblas/spdgemv.c                            |   7 +-
 splinalg/Makefile.am                        |   2 +-
 spmatrix/Makefile.am                        |   9 +-
 spmatrix/TODO                               |   1 +
 spmatrix/avl.c                              | 611 -----------------
 matrix/init.c => spmatrix/compress.c        |  31 +-
 spmatrix/compress_source.c                  | 193 ++++++
 {vector => spmatrix}/copy.c                 |   4 +-
 spmatrix/{spcopy.c => copy_source.c}        |  50 +-
 {matrix => spmatrix}/file.c                 |   5 +-
 spmatrix/{spio.c => file_source.c}          | 183 +++--
 {matrix => spmatrix}/getset.c               |  11 +-
 spmatrix/getset_complex_source.c            | 248 +++++++
 spmatrix/{spgetset.c => getset_source.c}    | 183 +++--
 spmatrix/gsl_spmatrix.h                     | 232 ++-----
 spmatrix/gsl_spmatrix_char.h                | 174 +++++
 spmatrix/gsl_spmatrix_complex_double.h      | 173 +++++
 spmatrix/gsl_spmatrix_complex_float.h       | 173 +++++
 spmatrix/gsl_spmatrix_complex_long_double.h | 173 +++++
 spmatrix/gsl_spmatrix_double.h              | 174 +++++
 spmatrix/gsl_spmatrix_float.h               | 174 +++++
 spmatrix/gsl_spmatrix_int.h                 | 174 +++++
 spmatrix/gsl_spmatrix_long.h                | 174 +++++
 spmatrix/gsl_spmatrix_long_double.h         | 174 +++++
 spmatrix/gsl_spmatrix_short.h               | 174 +++++
 spmatrix/gsl_spmatrix_uchar.h               | 174 +++++
 spmatrix/gsl_spmatrix_uint.h                | 174 +++++
 spmatrix/gsl_spmatrix_ulong.h               | 174 +++++
 spmatrix/gsl_spmatrix_ushort.h              | 174 +++++
 {matrix => spmatrix}/init.c                 |   4 +-
 spmatrix/init_source.c                      | 448 +++++++++++++
 {vector => spmatrix}/oper.c                 |  10 +-
 spmatrix/oper_complex_source.c              | 467 +++++++++++++
 spmatrix/oper_source.c                      | 439 ++++++++++++
 {matrix => spmatrix}/prop.c                 |   4 +-
 spmatrix/{spprop.c => prop_source.c}        |  60 +-
 spmatrix/spcompress.c                       | 198 ------
 spmatrix/spmatrix.c                         | 489 --------------
 spmatrix/spoper.c                           | 234 -------
 {vector => spmatrix}/swap.c                 |   4 +-
 spmatrix/{spswap.c => swap_source.c}        | 185 +++---
 spmatrix/test.c                             | 896 ++++---------------------
 spmatrix/test_complex_source.c              | 710 ++++++++++++++++++++
 spmatrix/test_source.c                      | 700 +++++++++++++++++++
 movstat/movsum.c => spmatrix/util.c         |  52 +-
 63 files changed, 9440 insertions(+), 2928 deletions(-)
 create mode 100644 bst/Makefile.am
 create mode 100644 bst/avl.c
 create mode 100644 bst/bst.c
 create mode 100644 bst/gsl_bst.h
 create mode 100644 bst/gsl_bst_avl.h
 create mode 100644 bst/gsl_bst_rb.h
 create mode 100644 bst/rb.c
 create mode 100644 bst/test.c
 create mode 100644 bst/trav.c
 delete mode 100644 spmatrix/avl.c
 copy matrix/init.c => spmatrix/compress.c (76%)
 create mode 100644 spmatrix/compress_source.c
 copy {vector => spmatrix}/copy.c (97%)
 rename spmatrix/{spcopy.c => copy_source.c} (67%)
 copy {matrix => spmatrix}/file.c (95%)
 rename spmatrix/{spio.c => file_source.c} (59%)
 copy {matrix => spmatrix}/getset.c (91%)
 create mode 100644 spmatrix/getset_complex_source.c
 rename spmatrix/{spgetset.c => getset_source.c} (50%)
 create mode 100644 spmatrix/gsl_spmatrix_char.h
 create mode 100644 spmatrix/gsl_spmatrix_complex_double.h
 create mode 100644 spmatrix/gsl_spmatrix_complex_float.h
 create mode 100644 spmatrix/gsl_spmatrix_complex_long_double.h
 create mode 100644 spmatrix/gsl_spmatrix_double.h
 create mode 100644 spmatrix/gsl_spmatrix_float.h
 create mode 100644 spmatrix/gsl_spmatrix_int.h
 create mode 100644 spmatrix/gsl_spmatrix_long.h
 create mode 100644 spmatrix/gsl_spmatrix_long_double.h
 create mode 100644 spmatrix/gsl_spmatrix_short.h
 create mode 100644 spmatrix/gsl_spmatrix_uchar.h
 create mode 100644 spmatrix/gsl_spmatrix_uint.h
 create mode 100644 spmatrix/gsl_spmatrix_ulong.h
 create mode 100644 spmatrix/gsl_spmatrix_ushort.h
 copy {matrix => spmatrix}/init.c (96%)
 create mode 100644 spmatrix/init_source.c
 copy {vector => spmatrix}/oper.c (93%)
 create mode 100644 spmatrix/oper_complex_source.c
 create mode 100644 spmatrix/oper_source.c
 copy {matrix => spmatrix}/prop.c (97%)
 rename spmatrix/{spprop.c => prop_source.c} (63%)
 delete mode 100644 spmatrix/spcompress.c
 delete mode 100644 spmatrix/spmatrix.c
 delete mode 100644 spmatrix/spoper.c
 copy {vector => spmatrix}/swap.c (97%)
 rename spmatrix/{spswap.c => swap_source.c} (53%)
 create mode 100644 spmatrix/test_complex_source.c
 create mode 100644 spmatrix/test_source.c
 copy movstat/movsum.c => spmatrix/util.c (54%)


hooks/post-receive
-- 
GNU Scientific Library



reply via email to

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