[eclib] branch master updated (158cbff -> faa0b78)

$DEBFULLNAME julien.puydt at laposte.net
Thu May 15 06:27:43 UTC 2014


This is an automated email from the git hooks/post-receive script.

jpuydt-guest pushed a change to branch master
in repository eclib.

      from  158cbff   Override useless lintian warning
       new  9dcba68   Better manglings in the watch file to unify upstream's different schemes
      adds  a6bf8e8   Imported Upstream version 2014-05-14
       new  118a731   Merge tag 'upstream/2014-05-14'
       new  faa0b78   Bump the package versioning up

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                      |  17 +-
 INSTALL                                         |  15 +-
 README                                          |  16 +-
 autogen.sh                                      |  19 +-
 configure.ac                                    |  71 ++-
 debian/changelog                                |   6 +
 debian/control                                  |   2 +-
 debian/watch                                    |   2 +-
 libsrc/Makefile.am                              |  13 +-
 libsrc/arith.cc                                 |  42 +-
 libsrc/bitspace.cc                              |   8 +-
 libsrc/compproc.cc                              |   9 +-
 libsrc/descent.cc                               |   6 +-
 libsrc/eclib/arith.h                            |  29 +-
 libsrc/eclib/bigrat.h                           |  12 +
 libsrc/eclib/curve.h                            |   2 +-
 libsrc/eclib/homspace.h                         |  81 ++-
 libsrc/eclib/interface.h                        |   9 +-
 libsrc/eclib/logger.h                           |  83 +++
 libsrc/eclib/mat.h                              |   4 +-
 libsrc/eclib/method.h                           |   4 +-
 libsrc/eclib/moddata.h                          |  12 +-
 libsrc/eclib/options.h                          |   2 +-
 libsrc/eclib/reader.h                           |   2 +-
 libsrc/eclib/saturate.h                         |   2 +-
 libsrc/eclib/smat.h                             |  12 +-
 libsrc/eclib/smat_elim.h                        |  21 +-
 libsrc/eclib/sub.h                              |   2 +-
 libsrc/eclib/svec.h                             |  14 +-
 libsrc/eclib/threadpool.h                       |  83 +++
 libsrc/eclib/timer.h                            |  59 +-
 libsrc/eclib/vec.h                              |   6 +-
 libsrc/eclib/xmod.h                             |  13 +-
 libsrc/eclib/xsplit.h                           |  84 ++-
 libsrc/eclib/xsplit_data.h                      | 137 +++++
 libsrc/{gpslave.cc => gpslave.cc.in}            |   2 +-
 libsrc/homspace.cc                              | 246 ++++----
 libsrc/isogs.cc                                 |   3 +-
 libsrc/logger.cc                                |  93 +++
 libsrc/marith.cc                                |   8 +-
 libsrc/mat.cc                                   |  27 +-
 libsrc/moddata.cc                               |   9 +
 libsrc/mrank1.cc                                |   7 +-
 libsrc/mrank2.cc                                |   2 +-
 libsrc/msubspace.cc                             |   2 -
 libsrc/newforms.cc                              |  48 +-
 libsrc/nfd.cc                                   |  11 +-
 libsrc/oldforms.cc                              |  85 +--
 libsrc/pcprocs.cc                               |   4 +-
 libsrc/periods.cc                               |   2 +-
 libsrc/points.cc                                |   5 +-
 libsrc/polys.cc                                 |   1 +
 libsrc/realroots.cc                             |  18 +-
 libsrc/reduce.cc                                |   6 +-
 libsrc/saturate.cc                              |  30 +-
 libsrc/smat.cc                                  |  65 ++-
 libsrc/smat_elim.cc                             |  93 +--
 libsrc/sub.cc                                   |  14 +-
 libsrc/svec.cc                                  |   2 +-
 libsrc/threadpool.cc                            | 157 +++++
 libsrc/timer.cc                                 | 320 ++++++++++
 libsrc/vec.cc                                   |  58 +-
 libsrc/xsplit.cc                                | 741 ++++++++++++++----------
 libsrc/xsplit_data.cc                           | 365 ++++++++++++
 m4/ax_boost_asio.m4                             | 116 ++++
 m4/ax_boost_base.m4                             | 270 +++++++++
 m4/ax_boost_system.m4                           | 126 ++++
 m4/ax_boost_thread.m4                           | 155 +++++
 m4/ax_cxx_compile_stdcxx_0x.m4                  | 107 ++++
 m4/ax_cxx_compile_stdcxx_11.m4                  | 133 +++++
 m4/ax_cxx_header_tr1_unordered_map.m4           |  38 ++
 m4/ax_cxx_header_unordered_map.m4               |  42 ++
 progs/Makefile.am                               |  14 +-
 progs/in/{nfhpcurve.in => nfhpcurve_prof.in}    |   0
 progs/out/{nfhpcurve.out => nfhpcurve_prof.out} |   0
 progs/out/pcurve.out                            |   4 +-
 progs/pcurve.cc                                 |   4 +-
 tests/Makefile.am                               |  20 +-
 tests/hecketest.cc                              |   9 +-
 ChangeLog => tests/in/threading.in              |   0
 tests/in/timing.in                              |   2 +
 tests/mattest.cc                                |   2 +-
 tests/out/threading.out                         | 126 ++++
 tests/out/timing.out                            |   3 +
 tests/smattest.cc                               |   4 +-
 tests/space.cc                                  |   6 +-
 tests/threading.cc                              | 141 +++++
 tests/timing.cc                                 | 103 ++++
 88 files changed, 3918 insertions(+), 830 deletions(-)
 create mode 100644 libsrc/eclib/logger.h
 create mode 100644 libsrc/eclib/threadpool.h
 create mode 100644 libsrc/eclib/xsplit_data.h
 rename libsrc/{gpslave.cc => gpslave.cc.in} (99%)
 create mode 100644 libsrc/logger.cc
 create mode 100644 libsrc/threadpool.cc
 create mode 100644 libsrc/xsplit_data.cc
 create mode 100644 m4/ax_boost_asio.m4
 create mode 100644 m4/ax_boost_base.m4
 create mode 100644 m4/ax_boost_system.m4
 create mode 100644 m4/ax_boost_thread.m4
 create mode 100644 m4/ax_cxx_compile_stdcxx_0x.m4
 create mode 100644 m4/ax_cxx_compile_stdcxx_11.m4
 create mode 100644 m4/ax_cxx_header_tr1_unordered_map.m4
 create mode 100644 m4/ax_cxx_header_unordered_map.m4
 copy progs/in/{nfhpcurve.in => nfhpcurve_prof.in} (100%)
 copy progs/out/{nfhpcurve.out => nfhpcurve_prof.out} (100%)
 copy ChangeLog => tests/in/threading.in (100%)
 create mode 100644 tests/in/timing.in
 create mode 100644 tests/out/threading.out
 create mode 100644 tests/out/timing.out
 create mode 100644 tests/threading.cc
 create mode 100644 tests/timing.cc

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/eclib.git



More information about the debian-science-commits mailing list