[fplll] branch master updated (8e443f7 -> 291ebcc)

Ximin Luo infinity0 at debian.org
Wed Jul 6 20:55:30 UTC 2016


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

infinity0 pushed a change to branch master
in repository fplll.

      from  8e443f7   Really fixing d/gbp.conf
      adds  3a522dc   Imported Upstream version 4.0.5+git20160107
       new  9a12a5f   Merge tag 'upstream/4.0.5+git20160107'
       new  a5d050f   Update d/changelog
       new  291ebcc   Update path for README.md

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:
 AUTHORS                                 |    4 +-
 Makefile.am                             |    6 +-
 Makefile.in                             |  435 +-
 NEWS                                    |    7 +
 README                                  |    1 -
 README.html => README.md                |  648 +--
 aclocal.m4                              | 8696 ++-----------------------------
 compile                                 |  347 ++
 config.guess                            |  461 +-
 config.h.in                             |    6 +-
 config.sub                              |  130 +-
 configure                               | 7870 +++++++++++++++++-----------
 configure.ac                            |   53 +-
 debian/changelog                        |    7 +
 debian/libfplll-dev.doc-base            |    6 +-
 debian/libfplll-dev.docs                |    2 +-
 depcomp                                 |  531 +-
 install-sh                              |  392 +-
 ltmain.sh                               | 8143 +++++++++++++++++++----------
 aclocal.m4 => m4/libtool.m4             | 5749 ++++++++++----------
 m4/ltoptions.m4                         |  437 ++
 m4/ltsugar.m4                           |  124 +
 m4/ltversion.m4                         |   23 +
 m4/lt~obsolete.m4                       |   99 +
 missing                                 |  461 +-
 src/Makefile.am                         |   59 +-
 src/Makefile.in                         |  655 ++-
 src/bkz.cpp                             |  242 +-
 src/bkz.h                               |  142 +-
 src/defs.h                              |   20 +-
 src/dpe.h                               |  778 +--
 src/enumerate.cpp                       |   76 +-
 src/enumerate.h                         |   28 +-
 src/example_out                         |   11 -
 src/fplll.cpp                           |  182 +-
 src/fplll.h                             |   25 +-
 src/fplll_config.h                      |    8 +
 src/fplll_config.h.in                   |    7 +
 src/gso.h                               |   27 +-
 src/latticegen.cpp                      |   25 +-
 src/lll.cpp                             |   33 +
 src/lll.h                               |    3 +
 src/llldiff.cpp                         |    2 +-
 src/main.cpp                            |   54 +-
 src/main.h                              |    7 +-
 src/nr.cpp                              | 1875 -------
 src/nr.h                                |  430 +-
 src/nr_FP.inl                           |  377 ++
 src/nr_FP_d.inl                         |  281 +
 src/nr_FP_dd.inl                        |  283 +
 src/nr_FP_dpe.inl                       |  308 ++
 src/nr_FP_ld.inl                        |  287 +
 src/nr_FP_misc.inl                      |  349 ++
 src/nr_FP_mpfr.inl                      |  321 ++
 src/nr_FP_qd.inl                        |  289 +
 src/nr_Z.inl                            |  307 ++
 src/nr_Z_d.inl                          |  321 ++
 src/nr_Z_l.inl                          |  357 ++
 src/nr_Z_misc.inl                       |  241 +
 src/nr_Z_mpz.inl                        |  356 ++
 src/nr_rand.inl                         |   71 +
 src/reformat.pl                         |   30 -
 src/reformat_magma.pl                   |   28 -
 src/svpcvp.cpp                          |   45 +-
 src/svpcvp.h                            |    2 +-
 src/test.cpp                            |   24 +-
 src/util.cpp                            |   84 -
 src/util.h                              |   32 -
 src/wrapper.cpp                         |   90 +-
 test-driver                             |  148 +
 tests/Makefile.am                       |   22 +
 tests/Makefile.in                       |  989 ++++
 {src => tests/lattices}/dim55_in        |    0
 {src => tests/lattices}/example_in      |    0
 {src => tests/lattices}/example_svp_in  |    0
 {src => tests/lattices}/example_svp_out |    0
 tests/test_lll.cpp                      |  170 +
 tests/test_svp.cpp                      |  140 +
 tools/plot_gso_dump.py                  |   43 +
 tools/reformat.pl                       |   47 +
 tools/reformat_magma.pl                 |   44 +
 81 files changed, 23339 insertions(+), 22074 deletions(-)
 delete mode 100644 README
 rename README.html => README.md (60%)
 create mode 100755 compile
 mode change 100755 => 100644 ltmain.sh
 copy aclocal.m4 => m4/libtool.m4 (57%)
 create mode 100644 m4/ltoptions.m4
 create mode 100644 m4/ltsugar.m4
 create mode 100644 m4/ltversion.m4
 create mode 100644 m4/lt~obsolete.m4
 delete mode 100644 src/example_out
 create mode 100644 src/fplll_config.h
 create mode 100644 src/fplll_config.h.in
 delete mode 100644 src/nr.cpp
 create mode 100644 src/nr_FP.inl
 create mode 100644 src/nr_FP_d.inl
 create mode 100644 src/nr_FP_dd.inl
 create mode 100644 src/nr_FP_dpe.inl
 create mode 100644 src/nr_FP_ld.inl
 create mode 100644 src/nr_FP_misc.inl
 create mode 100644 src/nr_FP_mpfr.inl
 create mode 100644 src/nr_FP_qd.inl
 create mode 100644 src/nr_Z.inl
 create mode 100644 src/nr_Z_d.inl
 create mode 100644 src/nr_Z_l.inl
 create mode 100644 src/nr_Z_misc.inl
 create mode 100644 src/nr_Z_mpz.inl
 create mode 100644 src/nr_rand.inl
 delete mode 100755 src/reformat.pl
 delete mode 100755 src/reformat_magma.pl
 create mode 100755 test-driver
 create mode 100644 tests/Makefile.am
 create mode 100644 tests/Makefile.in
 rename {src => tests/lattices}/dim55_in (100%)
 rename {src => tests/lattices}/example_in (100%)
 rename {src => tests/lattices}/example_svp_in (100%)
 rename {src => tests/lattices}/example_svp_out (100%)
 create mode 100644 tests/test_lll.cpp
 create mode 100644 tests/test_svp.cpp
 create mode 100755 tools/plot_gso_dump.py
 create mode 100755 tools/reformat.pl
 create mode 100755 tools/reformat_magma.pl

-- 
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