[linbox] branch master updated (9163c00 -> 420433b)

Doug Torrance dtorrance-guest at moszumanska.debian.org
Wed Aug 10 03:51:15 UTC 2016


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

dtorrance-guest pushed a change to branch master
in repository linbox.

      from  9163c00   debian/changelog: Update entry for version 1.4.1-1.
       new  db70f94   Imported Upstream version 1.4.2
       new  420433b   Merge tag 'upstream/1.4.2'

The 2 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 +-
 AUTHORS                                            |    2 +
 ChangeLog                                          |    4 +
 Makefile.am                                        |    2 +-
 README                                             |   34 -
 README.md                                          |   46 +
 auto-install.sh                                    |   34 +-
 benchmarks/benchmark-order-basis.C                 |   87 +-
 benchmarks/perfpublisher.sh                        |   22 +-
 configure.ac                                       |   35 +-
 examples/Makefile.am                               |   16 +-
 examples/bench-fft.C                               |   81 +-
 examples/bench-matpoly-mult.C                      |   29 +-
 examples/bench-new-fft.C                           |  333 ++++++
 examples/smith.C                                   |    2 +-
 examples/smithvalence.h                            |    4 +-
 examples/solve.C                                   |  207 +---
 examples/test.sh                                   |    8 +-
 interfaces/sage/Makefile.am                        |    2 +-
 linbox.pc.in                                       |    6 +-
 linbox/Makefile.am                                 |    2 +-
 linbox/algorithms/Makefile.am                      |    4 +-
 linbox/algorithms/block-wiedemann.h                |    7 +-
 .../algorithms/classic-rational-reconstruction.h   |    2 +-
 linbox/algorithms/coppersmith.h                    |    6 +-
 linbox/algorithms/matpoly-mult.h                   |   16 +-
 linbox/algorithms/polynomial-matrix/Makefile.am    |    1 +
 .../matpoly-mult-fft-multiprecision.inl            |  191 ++--
 ...tiprecision.inl => matpoly-mult-fft-recint.inl} |  613 +++++-----
 .../matpoly-mult-fft-wordsize-fast.inl             |   16 +-
 .../matpoly-mult-fft-wordsize-three-primes.inl     |   69 +-
 .../matpoly-mult-fft-wordsize.inl                  |   19 +-
 .../polynomial-matrix/matpoly-mult-fft.h           |  115 +-
 linbox/algorithms/polynomial-matrix/order-basis.h  |  229 +++-
 .../polynomial-matrix/polynomial-fft-algorithms.h  |  401 +++++++
 .../polynomial-matrix/polynomial-fft-butterflies.h |  492 ++++++++
 .../polynomial-matrix/polynomial-fft-init.h        |  299 +++++
 .../polynomial-fft-transform-simd.inl              |  804 +++++++-------
 .../polynomial-matrix/polynomial-fft-transform.h   |  211 +++-
 .../polynomial-matrix/polynomial-fft-transform.inl |   28 +-
 .../polynomial-matrix/polynomial-matrix-domain.h   |   10 +-
 .../polynomial-matrix/simd-additional-functions.h  |  474 ++++++++
 linbox/algorithms/polynomial-matrix/simd.h         |    7 +-
 linbox/algorithms/rational-reconstruction.h        |    4 +-
 linbox/algorithms/rational-solver.inl              |    2 +-
 .../algorithms/smith-form-sparseelim-poweroftwo.h  |    2 +-
 linbox/algorithms/vector-fraction.h                |    4 +-
 linbox/blackbox/apply.h                            |    6 +-
 linbox/linbox-config.h                             |   11 +-
 linbox/matrix/polynomial-matrix.h                  |   45 +-
 linbox/matrix/sparsematrix/sparse-csr-matrix.h     |    6 +-
 linbox/randiter/givaro-poly.h                      |    2 +-
 linbox/randiter/mersenne-twister.h                 |    6 +-
 linbox/randiter/random-fftprime.h                  |  237 ++--
 linbox/ring/modular/Makefile.am                    |    1 -
 linbox/ring/modular/modular-int32.h                |  271 ++---
 linbox/ring/modular/modular-int64.h                |  288 +++--
 linbox/ring/modular/modular-unsigned.h             | 1172 +++++++++++++++-----
 linbox/ring/modular/modular-unsigned.inl           |  828 --------------
 linbox/ring/ntl/ntl-gf2e.h                         |    2 +-
 linbox/ring/ntl/ntl-lzz_pex.h                      |    2 +-
 linbox/ring/ntl/ntl-zz_p.h                         |    4 +-
 linbox/ring/ntl/ntl-zz_pe.h                        |    6 +-
 linbox/ring/pir-modular-int32.h                    |    2 +
 linbox/ring/pir-ntl-zz_p.h                         |    2 +-
 linbox/solutions/smith-form.h                      |  103 +-
 linbox/util/Makefile.am                            |    2 +-
 linbox/vector/blas-vector.h                        |    6 +-
 macros/fflas-ffpack-check.m4                       |    4 +-
 tests/.gitignore                                   |    2 +-
 tests/jenkins-maker.sh                             |   87 ++
 tests/perfpublisher.sh                             |   26 +-
 tests/test-charpoly.C                              |    6 +-
 tests/test-field.h                                 |    8 +-
 tests/test-order-basis.C                           |   38 +-
 tests/test-smith-form-adaptive.C                   |  203 +---
 tests/test-smith-form-binary.C                     |  211 +---
 tests/test-smith-form-iliopoulos.C                 |    2 +
 tests/test-smith-form.C                            |  214 +---
 tests/test-smith-form.h                            |  166 +++
 80 files changed, 5482 insertions(+), 3471 deletions(-)
 delete mode 100644 README
 create mode 100644 README.md
 create mode 100755 examples/bench-new-fft.C
 copy linbox/algorithms/polynomial-matrix/{matpoly-mult-fft-multiprecision.inl => matpoly-mult-fft-recint.inl} (52%)
 create mode 100644 linbox/algorithms/polynomial-matrix/polynomial-fft-algorithms.h
 create mode 100644 linbox/algorithms/polynomial-matrix/polynomial-fft-butterflies.h
 create mode 100644 linbox/algorithms/polynomial-matrix/polynomial-fft-init.h
 create mode 100644 linbox/algorithms/polynomial-matrix/simd-additional-functions.h
 delete mode 100755 linbox/ring/modular/modular-unsigned.inl
 create mode 100755 tests/jenkins-maker.sh
 create mode 100644 tests/test-smith-form.h

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



More information about the debian-science-commits mailing list