[fplll] branch master updated (f892f72 -> 1bb3839)

Julien Puydt julien.puydt at laposte.net
Thu Sep 14 05:31:29 UTC 2017


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

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

      from  f892f72   Release 5.1.0-3 to Debian unstable.
      adds  79f28d0   New upstream version 5.2.0
       new  30fb4e2   Updated version 5.2.0 from 'upstream/5.2.0'
       new  f6b9da4   Package 5.2.0
       new  dd45c2d   Bump std-ver to 4.1.0
       new  98a4e33   Bump d/watch to version 4
       new  efcb330   Remove the test pruner patch : obsolete (upstream improved the code)
       new  0fa3a72   Refresh the patch for versioned strategy paths
       new  7a9c452   Follow upstream soname bump from version 3 to 4
       new  1bb3839   Forward the versioned strategies patch to upstream

The 8 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                                         |   2 +
 .travis.yml                                        |  17 +-
 Doxyfile                                           |   4 +-
 Makefile.am                                        |   2 +
 README.md                                          |  48 +-
 codecov.yml                                        |  27 +
 configure.ac                                       |  11 +-
 debian/changelog                                   |  11 +
 debian/control                                     |   8 +-
 debian/libfplll3.install                           |   2 -
 debian/libfplll3.lintian-overrides                 |   2 -
 debian/libfplll3.shlibs                            |   1 -
 ...plll3.README.Debian => libfplll4.README.Debian} |   0
 debian/libfplll4.install                           |   2 +
 debian/libfplll4.lintian-overrides                 |   2 +
 debian/libfplll4.shlibs                            |   1 +
 ...s-in-test_pruner-now-tolerates-small-nume.patch | 152 -----
 debian/patches/series                              |   1 -
 debian/patches/versioned_strategies_path           |  14 +-
 debian/watch                                       |   2 +-
 fplll/Makefile.am                                  |  11 +-
 fplll/bkz.cpp                                      | 456 +++++++++-----
 fplll/bkz.h                                        | 414 +++++++++----
 fplll/bkz_param.cpp                                |  31 +-
 fplll/bkz_param.h                                  |  90 ++-
 fplll/defs.h                                       |  69 ++-
 fplll/enum/enumerate.cpp                           |  90 ++-
 fplll/enum/enumerate.h                             |  22 +-
 fplll/enum/enumerate_base.cpp                      |   5 +-
 fplll/enum/enumerate_base.h                        |   1 -
 fplll/enum/enumerate_ext.cpp                       |  55 +-
 fplll/enum/enumerate_ext.h                         |   6 +-
 fplll/enum/evaluator.cpp                           |  56 +-
 fplll/enum/evaluator.h                             |  63 +-
 fplll/enum/topenum.cpp                             |   8 +-
 fplll/enum/topenum.h                               |  16 +-
 fplll/fplll_config.h.in                            |   3 +
 fplll/gso.cpp                                      | 278 +--------
 fplll/gso.h                                        | 675 ++++-----------------
 fplll/gso_gram.cpp                                 | 411 +++++++++++++
 fplll/gso_gram.h                                   | 252 ++++++++
 fplll/gso_interface.cpp                            | 336 ++++++++++
 fplll/{gso.h => gso_interface.h}                   | 297 +++++----
 fplll/latticegen.cpp                               |   2 +-
 fplll/lll.cpp                                      |  72 ++-
 fplll/lll.h                                        |   8 +-
 fplll/main.cpp                                     |  78 ++-
 fplll/nr/dpe.h                                     |   6 +-
 fplll/nr/matrix.cpp                                |  29 +-
 fplll/nr/matrix.h                                  |  26 +-
 fplll/nr/nr.h                                      |   8 -
 fplll/nr/nr_FP.inl                                 |  16 +-
 fplll/nr/nr_FP_d.inl                               |   8 +-
 fplll/nr/nr_FP_dd.inl                              |  25 +-
 fplll/nr/nr_FP_dpe.inl                             |  26 +
 fplll/nr/nr_FP_ld.inl                              |   7 +-
 fplll/nr/nr_FP_misc.inl                            |  53 +-
 fplll/nr/nr_FP_mpfr.inl                            |   8 +
 fplll/nr/nr_FP_qd.inl                              |  19 +-
 fplll/nr/nr_Z.inl                                  |   3 +-
 fplll/nr/numvect.h                                 |  55 +-
 fplll/pruner.cpp                                   | 646 +++++++++-----------
 fplll/pruner.h                                     | 588 ++++++++++++------
 fplll/sieve/sieve_gauss.cpp                        |  52 +-
 fplll/sieve/sieve_gauss.h                          |  17 +-
 fplll/sieve/sieve_gauss_2sieve.cpp                 |   4 +-
 fplll/sieve/sieve_gauss_3sieve.cpp                 |   4 +-
 fplll/sieve/sieve_gauss_4sieve.cpp                 |   4 +-
 fplll/sieve/sieve_gauss_str.h                      |   6 +-
 fplll/sieve/sieve_main.cpp                         |  46 +-
 fplll/svpcvp.cpp                                   | 105 ++--
 fplll/svpcvp.h                                     |  25 +-
 fplll/util.cpp                                     |  15 +-
 fplll/util.h                                       |   5 +-
 fplll/wrapper.cpp                                  |  23 +-
 fplll/wrapper.h                                    |   9 +-
 tests/Makefile.am                                  |  12 +-
 tests/lattices/example2_in                         |   3 +
 tests/lattices/stalling_93_53.txt                  |  93 +++
 tests/test_bkz.cpp                                 | 162 ++++-
 tests/test_cvp.cpp                                 |  54 +-
 tests/test_gso.cpp                                 | 295 +++++++++
 tests/test_lll.cpp                                 |  14 +-
 tests/test_lll_gram.cpp                            | 274 +++++++++
 tests/test_nr.cpp                                  |  42 ++
 tests/test_pruner.cpp                              | 196 +++---
 tests/test_sieve.cpp                               |  51 +-
 tests/test_svp.cpp                                 | 117 ++--
 tests/test_utils.h                                 |  53 ++
 tools/plot_gso_dump.py                             |  20 +-
 90 files changed, 4676 insertions(+), 2662 deletions(-)
 create mode 100644 codecov.yml
 delete mode 100644 debian/libfplll3.install
 delete mode 100644 debian/libfplll3.lintian-overrides
 delete mode 100644 debian/libfplll3.shlibs
 rename debian/{libfplll3.README.Debian => libfplll4.README.Debian} (100%)
 create mode 100644 debian/libfplll4.install
 create mode 100644 debian/libfplll4.lintian-overrides
 create mode 100644 debian/libfplll4.shlibs
 delete mode 100644 debian/patches/0001-Inequalities-in-test_pruner-now-tolerates-small-nume.patch
 mode change 100644 => 100755 fplll/Makefile.am
 create mode 100644 fplll/gso_gram.cpp
 create mode 100644 fplll/gso_gram.h
 create mode 100644 fplll/gso_interface.cpp
 copy fplll/{gso.h => gso_interface.h} (72%)
 mode change 100644 => 100755 tests/Makefile.am
 create mode 100755 tests/lattices/example2_in
 create mode 100644 tests/lattices/stalling_93_53.txt
 create mode 100644 tests/test_gso.cpp
 create mode 100644 tests/test_lll_gram.cpp
 create mode 100644 tests/test_utils.h

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



More information about the debian-science-commits mailing list