pkgsrc/math
prlw1 15054c4f26 Update eigen3 to 3.2.7
Eigen 3.2.7

   Released on November 5, 2015

   Changes since 3.2.6:
     * Main fixes and improvements:
          + Add support for dense.cwiseProduct(sparse).
          + Fix a regression regarding (dense*sparse).diagonal().
          + Make the IterativeLinearSolvers module compatible with
            MPL2-only mode by defaulting to COLAMDOrdering and
            NaturalOrdering for ILUT and ILLT respectively.
          + [59]Bug 266: backport support for c++11 move semantic
          + operator/=(Scalar) now performs a true division (instead of
            mat*(1/s))
          + Improve numerical accuracy in LLT and triangular solve by
            using true scalar divisions (instead of mat * (1/s))
          + [60]Bug 1092: fix iterative solver constructors for
            expressions as input
          + [61]Bug 1088: fix setIdenity for non-compressed sparse-matrix
          + [62]Bug 1086: add support for recent SuiteSparse versions

     * Others:
          + Add overloads for real-scalar times SparseMatrix<complex>
            operations. This avoids real to complex conversions, and also
            fixes a compilation issue with MSVC.
          + Use explicit Scalar types for AngleAxis initialization
          + Fix several shortcomings in cost computation (avoid multiple
            re-evaluation in some very rare cases).
          + [63]Bug 1090: fix a shortcoming in redux logic for which
            slice-vectorization plus unrolling might happen.
          + Fix compilation issue with MSVC by backporting
            DenseStorage::operator= from devel branch.
          + [64]Bug 1063: fix nesting of unsupported/AutoDiffScalar to
            prevent dead references when computing second-order
            derivatives
          + [65]Bug 1100: remove explicit CMAKE_INSTALL_PREFIX prefix to
            conform to cmake install's DESTINATION parameter.
          + unsupported/ArpackSupport is now properly installed by make
            install.
          + [66]Bug 1080: warning fixes

Eigen 3.2.6

   Released on October 1, 2015

   Changes since 3.2.5:
     * fix some compilation issues with MSVC 2013, including bugs [67]1000
       and [68]1057
     * SparseLU: fixes to support EIGEN_DEFAULT_TO_ROW_MAJOR ([69]bug
       1053), and for empty ([70]bug 1026) and some structurally rank
       deficient matrices ([71]bug 792)
     * [72]Bug 1075: fix AlignedBox::sample() for Dynamic dimension
     * fix regression in AMD ordering when a column has only one
       off-diagonal non-zero (used in sparse Cholesky)
     * fix Jacobi preconditioner with zero diagonal entries
     * fix Quaternion identity initialization for non-implicitly
       convertible types
     * [73]Bug 1059: fix predux_max<Packet4i> for NEON
     * [74]Bug 1039: fix some issues when redefining
       EIGEN_DEFAULT_DENSE_INDEX_TYPE
     * [75]Bug 1062: fix SelfAdjointEigenSolver for RowMajor matrices
     * MKL: fix support for the 11.2 version, and fix a naming conflict
       ([76]bug 1067)
          + [77]Bug 1033: explicit type conversion from 0 to RealScalar

Eigen 3.3-alpha1

   Released on September 4, 2015

   See the [78]announcement.

Eigen 3.2.5

   Released on June 16, 2015

   Changes since 3.2.4:
     * Changes with main impact:
          + Improve robustness of SimplicialLDLT to semidefinite problems
            by correctly handling structural zeros in AMD reordering
          + Re-enable supernodes in SparseLU (fix a performance regression
            in SparseLU)
          + Use zero guess in ConjugateGradients::solve
          + Add PermutationMatrix::determinant method
          + Fix SparseLU::signDeterminant() method, and add a
            SparseLU::determinant() method
          + Allows Lower|Upper as a template argument of CG and MINRES: in
            this case the full matrix will be considered
          + [79]Bug 872: remove usage of std::bind* functions (deprecated
            in c++11)

     * Numerical robustness improvements:
          + [80]Bug 1014: improve numerical robustness of the 3x3 direct
            eigenvalue solver
          + [81]Bug 1013: fix 2x2 direct eigenvalue solver for identical
            eigenvalues
          + [82]Bug 824: improve accuracy of Quaternion::angularDistance
          + [83]Bug 941: fix an accuracy issue in ColPivHouseholderQR by
            continuing the decomposition on a small pivot
          + [84]Bug 933: improve numerical robustness in RealSchur
          + Fix default threshold value in SPQR

     * Other changes:
          + Fix usage of EIGEN_NO_AUTOMATIC_RESIZING
          + Improved support for custom scalar types in SparseLU
          + Improve cygwin compatibility
          + [85]Bug 650: fix an issue with sparse-dense product and
            rowmajor matrices
          + [86]Bug 704: fix MKL support (HouseholderQR)
          + [87]Bug 705: fix handling of Lapack potrf return code (LLT)
          + [88]Bug 714: fix matrix product with OpenMP support
          + [89]Bug 949: add static assertions for incompatible scalar
            types in many of the dense decompositions
          + [90]Bugs 957, [91]1000: workaround MSVC/ICC compilation issues
            when using sparse blocks
          + [92]Bug 969: fix ambiguous calls to Ref
          + [93]Bugs 972, [94]986: add support for coefficient-based
            product with 0 depth
          + [95]Bug 980: fix taking a row (resp. column) of a column-major
            (resp. row-major) sparse matrix
          + [96]Bug 983: fix an alignement issue in Quaternion
          + [97]Bug 985: fix RealQZ when either matrix had zero rows or
            columns
          + [98]Bug 987: fix alignement guess in diagonal product
          + [99]Bug 993: fix a pitfall with matrix.inverse()
          + [100]Bugs 996, [101]1016: fix scalar conversions
          + [102]Bug 1003: fix handling of pointers non aligned on scalar
            boundary in slice-vectorization
          + [103]Bug 1010: fix member initialization in IncompleteLUT
          + [104]Bug 1012: enable alloca on Mac OS or if alloca is defined
            as macro
          + Doc and build system: [105]733, [106]914, [107]952, [108]961,
            [109]999

Eigen 3.2.4

   Released on January 21, 2015

   Changes since 3.2.3:
     * Fix compilation regression in Rotation2D
     * [110]Bug 920: fix compilation issue with MSVC 2015.
     * [111]Bug 921: fix utilization of bitwise operation on enums in
       first_aligned.
     * Fix compilation with NEON on some platforms.

Eigen 3.2.3

   Released on December 16, 2014

   Changes since 3.2.2:
     * Core:
          + Enable Mx0 * 0xN matrix products.
          + [112]Bug 859: fix returned values for vectorized versions of
            exp(NaN), log(NaN), sqrt(NaN) and sqrt(-1).
          + [113]Bug 879: tri1 = mat * tri2 was compiling and running
            incorrectly if tri2 was not numerically triangular. Workaround
            the issue by evaluating mat*tri2 into a temporary.
          + [114]Bug 854: fix numerical issue in
            SelfAdjointEigenSolver::computeDirect for 3x3 matrices.
          + [115]Bug 884: make sure there no call to malloc for zero-sized
            matrices or for a Ref<> without temporaries.
          + [116]Bug 890: fix aliasing detection when applying a
            permutation.
          + [117]Bug 898: MSVC optimization by adding inline hint to
            const_cast_ptr.
          + [118]Bug 853: remove enable_if<> in Ref<> ctor.

     * Dense solvers:
          + [119]Bug 894: fix the sign returned by LDLT for multiple calls
            to compute().
          + Fix JacobiSVD wrt underflow and overflow.
          + [120]Bug 791: fix infinite loop in JacobiSVD in the presence
            of NaN.

     * Sparse:
          + Fix out-of-bounds memory write when the product of two sparse
            matrices is completely dense and performed using pruning.
          + UmfPack support: fix redundant evaluation/copies when calling
            compute(), add support for generic expressions as input, and
            fix extraction of the L and U factors ([121]Bug 911).
          + Improve SparseMatrix::block for const matrices (the generic
            path was used).
          + Fix memory pre-allocation when permuting inner vectors of a
            sparse matrix.
          + Fix SparseQR::rank for a completely empty matrix.
          + Fix SparseQR for row-major inputs.
          + Fix SparseLU::absDeterminant and add respective unit test.
          + BiCGSTAB: make sure that good initial guesses are not
            destroyed by a bad preconditioner.

     * Geometry:
          + Fix Hyperplane::Through(a,b,c) when points are aligned or
            identical.
          + Fix linking issues in OpenGLSupport.

     * OS, build system and doc:
          + Various compilation fixes including: [122]bug 821, [123]bug
            822, [124]bug 857, [125]bug 871, [126]bug 873.
          + Fix many compilation warnings produced by recent compilers
            including: [127]bug 909.
          + [128]Bug 861: enable posix_memalign with PGI.
          + Fix BiCGSTAB doc example.

Eigen 3.2.2

   Released on August 4, 2014

   Changes since 3.2.1:
     * Core:
          + Relax Ref such that Ref<MatrixXf> accepts a RowVectorXf which
            can be seen as a degenerate MatrixXf(1,N)
          + Fix performance regression for the vectorization of sub
            columns/rows of matrices.
          + EIGEN_STACK_ALLOCATION_LIMIT: Raise its default value to
            128KB, make use of it to assert on maximal fixed size object,
            and allows it to be 0 to mean "no limit".
          + [129]Bug 839: Fix 1x1 triangular matrix-vector product.
          + [130]Bug 755: CommaInitializer produced wrong assertions in
            absence of Return-Value-Optimization.

     * Dense solvers:
          + Add a rank() method with threshold control to JacobiSVD, and
            make solve uses it to return the minimal norm solution for
            rank-deficient problems.
          + Various numerical fixes in JacobiSVD, including:[131]bug 843,
            and the move from Lapack to Matlab strategy for the default
            threshold.
          + Various numerical fixes in LDLT, including the case of
            semi-definite complex matrices.
          + Fix ColPivHouseholderQR::rank().
          + [132]Bug 222: Make temporary matrix column-major independently
            of EIGEN_DEFAULT_TO_ROW_MAJOR in BlockHouseholder.

     * Sparse:
          + [133]http://eigen.tuxfamily.org/bz/show_bug.cgi?id=838 Bug
            838]: Fix dense * sparse and sparse * dense outer products and
            detect outer products from either the lhs or rhs.
          + Make the ordering method of SimplicialL[D]LT configurable.
          + Fix regression in the restart mechanism of BiCGSTAB.
          + [134]Bug 836: extend SparseQR to support more columns than
            rows.
          + [135]Bug 808: Use double instead of float for the increasing
            size ratio in CompressedStorage::resize, fix implicit
            conversions from int/longint to float/double, and fix
            set_from_triplets temporary matrix type.
          + [136]Bug 647: Use smart_copy instead of bitwise memcpy in
            CompressedStorage.
          + GMRES: Initialize essential Householder vector with correct
            dimension.

     * Geometry:
          + [137]Bug 807: Missing scalar type cast in umeyama()
          + [138]Bug 806: Missing scalar type cast in
            Quaternion::setFromTwoVectors()
          + [139]Bug 759: Removed hard-coded double-math from
            Quaternion::angularDistance.

     * OS, build system and doc:
          + Fix compilation with Windows CE.
          + Fix some ICEs with VC11.
          + Check IMKL version for compatibility with Eigen
          + [140]Bug 754: Only inserted (!defined(_WIN32_WCE)) analog to
            alloc and free implementation.
          + [141]Bug 803: Avoid char* to int* conversion.
          + [142]Bug 819: Include path of details.h file.
          + [143]Bug 738: Use the "current" version of cmake project
            directories to ease the inclusion of Eigen within other
            projects.
          + [144]Bug 815: Fix doc of FullPivLU wrt permutation matrices.
          + [145]Bug 632: doc: Note that dm2 = sm1 + dm1 is not possible
          + Extend AsciiQuickReference (real, imag, conjugate, rot90)

Eigen 3.2.1

   Released on February 26, 2014

   Changes since 3.2.0:
     * Eigen2 support is now deprecated and will be removed in version
       3.3.
     * Core:
          + Bug fix for Ref object containing a temporary matrix.
          + [146]Bug 654: Allow construction of row vector from 1D array.
          + [147]Bug 679: Support cwiseMin() and cwiseMax() on maps.
          + Support conservativeResize() on vectors.
          + Improve performance of vectorwise and replicate expressions.
          + [148]Bug 642: Add vectorization of sqrt for doubles, and make
            sqrt really safe if EIGEN_FAST_MATH is disabled.
          + [149]Bug 616: Try harder to align columns when printing
            matrices and arrays.
          + [150]Bug 579: Add optional run-time parameter to fixed-size
            block methods.
          + Implement .all() and .any() for zero-sized objects
          + [151]Bug 708: Add placement new and delete for arrays.
          + [152]Bug 503: Better C++11 support.
     * Dense linear algebra:
          + [153]Bug 689: Speed up some matrix-vector products by using
            aligned loads if possible.
          + Make solve in FullPivHouseholderQR return least-square
            solution if there is no exact solution.
          + [154]Bug 678: Fix fullPivHouseholderQR for rectangular
            matrices.
          + Fix a 0/0 issue in JacobiSVD.
          + [155]Bug 736: Wrong result in LDLT::isPositiveDefinite() for
            semi-definite matrices.
          + [156]Bug 740: Fix overflow issue in stableNorm().
          + Make pivoting HouseholderQR compatible with custom scalar
            types.
     * Geometry:
          + Fix compilation of Transform * UniformScaling
     * Sparse matrices:
          + Fix elimination tree and SparseQR for fat rectangular
            matrices.
          + [157]Bug 635: add isCompressed to MappedSparseMatrix for
            compatibility.
          + [158]Bug 664: Support iterators without operator< in
            setFromTriplets().
          + Fixes in SparseLU: infinite loop, aliasing issue when solving,
            overflow in memory allocation, use exceptions only if enabled
            ([159]bug 672).
          + Fixes in SparseQR: reduce explicit zero, assigning result to
            map, assert catching non-conforming sizes, memory leak.
          + [160]Bug 681: Uninitialized value in CholmodSupport which may
            lead to incorrect results.
          + Fix some issues when using a non-standard index type ([161]bug
            665 and more)
          + Update constrained CG (unsupported module) to Eigen3.
     * OS and build system:
          + MacOS put OpenGL header files somewhere else from where we
            expected it.
          + Do not assume that alloca() is 16-byte aligned on Windows.
          + Compilation fixes when using ICC with Visual Studio.
          + Fix Fortran compiler detection in CMake files.
     * Fix some of our tests (bugs [162]744 and [163]748 and more).
     * Fix a few compiler warnings (bug [164]317 and more).
     * Documentation fixes (bugs [165]609, [166]638 and [167]739 and
       more).
2015-11-15 12:06:33 +00:00
..
aamath Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
abs Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
admesh Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
algae Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
analitza Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
antixls Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
aribas Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
arpack Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
bc Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
blas Build and link Fortran code using the Fortran Compiler. Bump revision. 2014-08-19 13:37:14 +00:00
blitz++ Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
calc Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
calcoo Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
cantor Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
capc-calc Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
cgal Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
clisp-pari Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
cln Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
cloog Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
coinmp Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
crfsuite Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
dcdflib.c Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
dcdflib.f Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
dfftpack
dieharder Update dieharder to 3.31.1 2015-10-26 05:52:06 +00:00
djbfft Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
eigen2 Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
eigen3 Update eigen3 to 3.2.7 2015-11-15 12:06:33 +00:00
eispack
ess Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
eukleides Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
eukleides10 Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
euler Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
extcalc Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
fftpack
fftw Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
fftw2 Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
fftwf Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
fgmp Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
fityk Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
fricas Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
galculator Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
gap Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
gcalctool Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
geg Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
genius Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
glpk Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
gnome-calculator Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
gnumeric Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
gnumeric110 Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
gnumeric112 Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
gp-autpgrp Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
gp-factint Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
gp-fplsa Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
gp-grape Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
gp-grpconst Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
gp-lag Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
grace Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
graphopt Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
grpn Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
gsl Update gsl to 2.0. 2015-11-06 11:19:48 +00:00
gtklife Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
harminv Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
heirloom-factor
heirloom-units
hs-distributive Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
hs-mwc-random Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
hs-nats Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
hs-scientific Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
hs-semigroups Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
ipopt Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
isl Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
itpp Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
kalgebra Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
kcalc Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
kseg Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
lapack Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
libffm Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
libint Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
liblbfgs Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
liblinear Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
libmatheval Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
libshorttext Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
libsvm Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
linpack
lp_solve Remove references to amd64, MACHINE_ARCH x86_64 cover all variants of 2015-11-08 15:08:00 +00:00
ltm Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
mapm Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
mathomatic Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
maxima Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
mcsim Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
meschach Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
metis Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
minisat Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
minpack
mpcomplex Don't clean intermediate files after checksum/patch phase. 2015-09-15 20:56:33 +00:00
mpfr Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
mprime-bin Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
mtl Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
muparser Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
newmat Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
nickle Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
ntl Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
octave Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
odepack
openaxiom Bump PKGREVISION for boehm-gc default-on threads, just to be on 2014-04-30 14:19:40 +00:00
openfst Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
ordCalc Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
otter Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Algorithm-Cluster Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Algorithm-Munkres Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Excel-Template Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Excel-Template-Plus Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-Base-Convert Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-Base36 Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-Base85 Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-BaseCnv Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-Bezier Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-BigInt-GMP Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-BigInt-Pari Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-BigInteger Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-Complex Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-Derivative Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-FFT Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-GMP Update to 2.11 2015-11-14 05:06:47 +00:00
p5-Math-Interpolate Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-MatrixReal Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-Pari Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-Permute-List Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-Prime-Util Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-Random Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-Random-ISAAC Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-Random-ISAAC-XS Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-Random-MT Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-Random-MT-Auto Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-Random-MT-Perl Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-Round Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-Spline Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Math-VecStat Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Number-Compare Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Number-Latin Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Number-Range Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Number-Tolerant Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Roman Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Set-Crontab Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Set-Infinite Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Spreadsheet-ParseExcel Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Spreadsheet-Read Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Spreadsheet-ReadSXC Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Spreadsheet-WriteExcel Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Spreadsheet-XLSX Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Statistics-Descriptive Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Statistics-Distributions Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Statistics-TTest Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Test-Number-Delta Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
pari Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
pari-galdata Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
pear-Math_BigInteger Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
pear-Numbers_Roman Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
pear-Numbers_Words Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
php-bcmath
ppl Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
prng Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
pspp Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
py-almost Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
py-cdecimal Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
py-ephem Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
py-ephem3 Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
py-fpconst Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
py-gmpy Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
py-infinity Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
py-intervals Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
py-mpmath Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
py-munkres Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
py-networkx Update py-networkx to 1.10, based on PR 50383 by Derouiche. 2015-11-01 09:58:28 +00:00
py-numarray use the Accelerate framework on Darwin instead of the obsolete vecLib 2015-01-27 05:04:06 +00:00
py-Numeric Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
py-numexpr Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
py-numpy Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
py-pandas Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
py-pytables Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
py-roman Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
py-rpy Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
py-Scientific Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
py-Scientific-doc Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
py-scipy Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
py-simpleeval Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
py-sympy Update to 0.7.6.1, based on PR 50382 by derouiche. 2015-11-01 09:54:11 +00:00
qalculate LLVM's correlated value propagation pass is known to require a lot of 2015-03-02 19:59:06 +00:00
qalculate-bases Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
qalculate-currency Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
qalculate-gtk Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
qalculate-kde Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
qalculate-units Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
qhull Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
quadpack
R Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-abind Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-akima Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-bitops Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-car Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-CGIwithR Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-chron Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-circular Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-classInt Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-clim.pact Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-combinat Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-DAAG Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-date Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-DBI Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-e1071 Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-gdata Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-genetics Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-geoR Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-geoRglm Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-GRASS Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-gstat Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-gtools Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-httpRequest Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-hwde Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-intervals Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-ISwR Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-lmm Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-mapproj Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-maps Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-minqa Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-mvtnorm Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-ncdf Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-PHYLOGR Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-pixmap Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-plyr Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-R2HTML Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-RandomFields Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-randomForest Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-RArcInfo Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-Rcmdr Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-RColorBrewer Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-RPostgreSQL Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-sgeostat Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-shapefiles Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-sp Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-spacetime Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-splancs Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-statmod Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-wle Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-XML Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-xts Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-zoo Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
randlib
ruby-gsl Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
ruby-narray Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
ruby-spreadsheet Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
sc Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
scilab Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
slatec Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
snns Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
speedcrunch Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
statist Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
superlu Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
tasp-vsipl Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
teapot Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
tex-apnum Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
tex-apnum-doc Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
tex-fp Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
tex-fp-doc Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
tex-kastrup Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
tex-kastrup-doc Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
texdrive Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
TinySVM Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
tochnog Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
udunits Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
units Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
vista Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
wxmaxima Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
xeukleides10 Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
xfractint Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
xgap Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
xldlas Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
xlife Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
xlispstat Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
xmgr Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
xylib Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
yacas Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
yorick Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
Makefile Add R-minqa 2015-10-05 01:14:06 +00:00