summaryrefslogtreecommitdiff
path: root/math
AgeCommit message (Collapse)AuthorFilesLines
2017-10-21R: update to 3.4.2markd4-22/+56
CHANGES IN R 3.4.2: NEW FEATURES: * Setting the LC_ALL category in Sys.setlocale() invalidates any cached locale-specific day/month names and the AM/PM indicator for strptime() (as setting LC_TIME has since R 3.1.0). * The version of LAPACK included in the sources has been updated to 3.7.1, a bug-fix release. * The default for tools::write_PACKAGES(rds_compress=) has been changed to "xz" to match the compression used by CRAN. * c() and unlist() are now more efficient in constructing the names(.) of their return value, thanks to a proposal by Suharto Anggono. (PR#17284) CHANGES IN R 3.4.0: SIGNIFICANT USER-VISIBLE CHANGES: * (Unix-alike) The default methods for download.file() and url() now choose "libcurl" except for file:// URLs. There will be small changes in the format and wording of messages, including in rare cases if an issue is a warning or an error. For example, when HTTP re-direction occurs, some messages refer to the final URL rather than the specified one. Those who use proxies should check that their settings are compatible (see ?download.file: the most commonly used forms work for both "internal" and "libcurl"). * table() has been amended to be more internally consistent and become back compatible to R <= 2.7.2 again. Consequently, table(1:2, exclude = NULL) no longer contains a zero count for <NA>, but useNA = "always" continues to do so. * summary.default() no longer rounds, but its print method does resulting in less extraneous rounding, notably of numbers in the ten thousands. * factor(x, exclude = L) behaves more rationally when x or L are character vectors. Further, exclude = <factor> now behaves as documented for long. * Arithmetic, logic (&, |) and comparison (aka 'relational', e.g., <, ==) operations with arrays now behave consistently, notably for arrays of length zero. Arithmetic between length-1 arrays and longer non-arrays had silently dropped the array attributes and recycled. This now gives a warning and will signal an error in the future, as it has always for logic and comparison operations in these cases (e.g., compare matrix(1,1) + 2:3 and matrix(1,1) < 2:3). * The JIT ('Just In Time') byte-code compiler is now enabled by default at its level 3. This means functions will be compiled on first or second use and top-level loops will be compiled and then run. (Thanks to Tomas Kalibera for extensive work to make this possible.) For now, the compiler will not compile code containing explicit calls to browser(): this is to support single stepping from the browser() call. JIT compilation can be disabled for the rest of the session using compiler::enableJIT(0) or by setting environment variable R_ENABLE_JIT to 0. * xtabs() works more consistently with NAs, also in its result no longer setting them to 0. Further, a new logical option addNA allows to count NAs where appropriate. Additionally, for the case sparse = TRUE, the result's dimnames are identical to the default case's. * Matrix products now consistently bypass BLAS when the inputs have NaN/Inf values. Performance of the check of inputs has been improved. Performance when BLAS is used is improved for matrix/vector and vector/matrix multiplication (DGEMV is now used instead of DGEMM). One can now choose from alternative matrix product implementations _via_ options(matprod = ). The "internal" implementation is not optimized for speed but consistent in precision with other summations in R (using long double accumulators where available). "blas" calls BLAS directly for best speed, but usually with undefined behavior for inputs with NaN/Inf. NEW FEATURES: * User errors such as integrate(f, 0:1, 2) are now caught. * Add signature argument to debug(), debugonce(), undebug() and isdebugged() for more conveniently debugging S3 and S4 methods. (Based on a patch by Gabe Becker.) * Add utils::debugcall() and utils::undebugcall() for debugging the function that would be called by evaluating the given expression. When the call is to an S4 generic or standard S3 generic, debugcall() debugs the method that would be dispatched. A number of internal utilities were added to support this, most notably utils::isS3stdGeneric(). (Based on a patch by Gabe Becker.) And many more - see the NEWS file for details.
2017-10-18p5-Math-Base85: update to 0.4.wiz2-8/+7
Revision history for Perl module Math::Base85. 0.4 2017-10-16T17:36:18Z Fix version numbering v0.3.1 2017-10-16T17:27:24Z - Move deps from build to runtime; fix courtesy of Dan Book <grinnz@gmail.com> 0.3 2017-10-16T16:39:34Z - Add metadata to distribution - Update directory structure to more standard Perl module structure - Extend metadata to include prereqs, repo information, author info etc. - Improve kwalitee - Update author and repo information to point to new locations - Add more explicit license information
2017-10-18py-rpy: update to 2.9.0adam3-20/+38
Release 2.9.0: New features - New module :mod:`rpy2.situation` to extract and report informations about the environment, such as where is the R HOME, what is the version of R, what is the version of R rpy2 was built with, etc... The module is also designed to be run directly and provide diagnostics: `python -m rpy2.situation`. - :meth:`Environment.values`, :meth:`Environment.pop`, :meth:`Environment.popitems`, :meth:`Environment.clear` to match :meth:`dict.values`, :meth:`dict.pop`, :meth:`dict.popitems`, :meth:`dict.clear`. - :class:`VectorOperationsDelegator` now has a method `__matmul__` to implement Python's matrix multiplication operator (PEP-0645). - A rule to convert R POSIXct vectors to pandas Timestamp vectors was added. - method :meth:`_repr_html_` for R vectors to display HTML in jupyter. Changes - Starting several times the singleton :class:`EventProcessor` longer results in a :class:`RuntimeError`. - The target version for the R package `dplyr` mapped is now 0.7.1, and :func:`rpy2.robjects.lib.dplyr.src_dt` and :func:`rpy2.robjects.lib.dplyr.src_desc` are no longer present. - :meth:`Environment.keys` is now a iterator to match :meth:`dict.keys`, also an interator in Python 3. - Target version of `ggplot2` library is 2.2.1. - Option `stringsasfactors` in the constructor for the class `DataFrame`. If `False`, the strings are no longer converted to factors. When converting from pandas data frames the default is to no longer convert columns of strings to factors. - The R "magic" for jupyter is now more consistently using the conversion system, and the use of custom converters through the magic argument `-c` will work as expected. - Docker-related files moved to directory docker/ (where variants image for rpy2 are available) Bugs fixed - :func:`numpy.float128` is not available on all platforms. The unit test for it is now skipped on systems where it is not present - R pairlist objects can now be sliced. - Passing parameters names that are empty string to R function was causing a segfault. - Trying to build an atomic R vector from a Python object that has a length, but it not a sequence nor an iterator was causing a segfault
2017-10-18R: pkgsrc changesadam4-19/+46
PkgSrc changes: * On Darwin, use Aqua interface instead of X11 * Cairo support also requires Pango * Allow Cairo with other backends, not only X11 (e.g. to make it work on Darwin)
2017-10-12math/Makefile: Add py-quadprogminskim1-1/+2
2017-10-12matg/py-quadprog: Import version 0.1.6minskim4-0/+33
quadprog solves a strictly convex quadratic program using the Goldfarb/Idnani dual algorithm.
2017-10-11py-simpleeval: update to 0.9.5adam2-10/+8
0.9.5: Python 3 compatibility. Bug fixes.
2017-10-08py-autograd: update to 1.1.13adam3-19/+20
1.1.13: Unknown changes.
2017-10-08py-intervals: update to 0.8.0adam4-30/+20
0.8.0: - Added is_connected utility method - Made interval constructor throw IllegalArgument exception for intervals such as (a..a) - Fixed some edge cases with interval intersections - Fixed interval union
2017-10-06math/R: better fix for fbsdrumko5-228/+170
Also move fixes from configure to configure.ac m4/R.m4 fix by @joerg Oked @joerg
2017-10-05py-numpy: update to 1.13.3adam3-17/+17
NumPy 1.13.3: This is a bugfix release for some problems found since 1.13.1. The most important fixes are for CVE-2017-12852 and temporary elision. Users of earlier versions of 1.13 should upgrade.
2017-10-03gnumeric: update to 1.12.35.wiz4-524/+1850
Gnumeric 1.12.35 Jean: * Fix cell border style selectors with recent gdk-pixbuf. [#781988] Morten: * Test suite improvements. * Improve relative accuracy of BESSELJ and BESSELY. * New function REDUCEPI. * Fix further fallout from glpk format change. [#783077] -------------------------------------------------------------------------- Gnumeric 1.12.34 Andreas: * Fix hyperlinks import from ODF. [#779635] Jean: * Fix xlsx export of chart series names. [#778618] * Always export a transparent fill style in charts. [#779160] Morten: * Doc fixes. * Fix xlsx import with missing header/footer. [#778292] * Minor xlsx import improvements with alias colors. * Test suite improvements. * Improve Excel handling of hyperlinks. * Hyperlinks improvements. [#706671] * Plug leaks. * Fix issues with sheet-local names. * ssdiff improvements with hyperlinks, input messages, conditional formats, and validations. * Make exit code from ssdiff follow diff's. * Fix ssdiff with inter-sheet references. * Fix style border colour sharing. -------------------------------------------------------------------------- Gnumeric 1.12.33 Andreas: * Fix export/import of scaling information to/from ODF. * Fix Wilcoxon Signed Rank Test handling of ties. [#772718] * Fix xlsx export of scale to page information. [#776196] Jean: * Fix use of cell formats in graphs data labels. [#777338] Morten: * Speed up sstest part of test suite. * Bring documentation build into the 21 century. * Non-linear solver improvements. * Avoid atomizing style regions with conditional formats. * Adapt to glpk file format changes. * Fix stf problems with text format. [#777543] -------------------------------------------------------------------------- Gnumeric 1.12.32 Andreas: * Improve html4.0 fragment export. [#769343] * Fix moving averages, exponential smothing and principal component tools. [#769659] Jean: * Fix paradox plugin build with pxlib-0.6.7. [#769319] Morten: * Avoid gnome-common dependency. * New text functions CONCAT, TEXTJOIN. * New selection functions IFS, SWITCH. * New aggregation functions SUMIFS, AVERAGEIFS, MINIFS, MAXIFS, COUNTIFS. * Fix criteria function issue with errors in the selector area. * Fix corner case for MINA and MAXA. * Fix criteria matching of numbers against strings. * Test suite improvements. -------------------------------------------------------------------------- Gnumeric 1.12.31 Morten: * Fix case issues for database functions. * Anchor COUNTIF criteria at end too. * Add tests for COUNTIF. * Fix inter-process paste crash. [#768164] -------------------------------------------------------------------------- Gnumeric 1.12.30 Morten: * Improve format guessing for csv and txt files. * Fix DCOUNT and DCOUNTA with missing field. [#767290] * Fix strictness in database functions. * Fix a bunch of corner cases for database functions. * Add tests for database functions. -------------------------------------------------------------------------- Gnumeric 1.12.29 Jean: * Fix array reading in plots using matrix data. [#765483] Morten: * Documentation fixes for complex numbers. * Fix rare RANDBETWEEN problem. * Test suite improvements. * Fix value-area problem. [#765438] * Make xlsx shared strings parsing more robust. [#765544] * Dead kittens. -------------------------------------------------------------------------- Gnumeric 1.12.28 Morten: * Fuzzed file fixes. [#761663] [#761727] [#762278] * Plug leaks. * Fix problems with ssconvert to lp/cplex formats. * Add sensitivity report to solver. * Fix bounds problem with cplex exporter. * Fix IMARCCOSH(1). * Add more tests for complex number evaluation. * Improve accuracy of IMLOG10. -------------------------------------------------------------------------- Gnumeric 1.12.27 Andreas: * Read/write rich-text font-size from ODF files. [#759983] * Read/write zoom values to/from ODF files in LO compatible way. [#700013] * Read new attribute to am/pm element in ODF import. [#760043] * Fix NETWORKDAYS. [#760576] Jean: * Fuzzed file fix. [#760546] * Fix data labels when the source is a range with several rows and columns. [#761048] Morten: * Teach ssconvert to split sheets into separate .txt files [#694408] * Improve test suite. * Fuzzed file fixes. [#760046] [#760085] [#760087] [#760089] [#760043] [#760103] [#760102] [#760101] [#760105] [#760106] [#760104] [#760229] [#760231] [#760232] [#760544] [#760545] [#761295] * Fix R.DBINOM extreme-value case. [#760230] * New function AGM. * Fix canvas problem leaving grab in place. [#760639] * Work around gtk+ bug causing growing windows. [#761142] * Improve BESSELJ and BESSELY. * Improve BETA accuracy. * Fix problem with database functions. [#761305] * Fix font problem for ssconvert to pdf. [#761296] * Fix bison check. [#761398] * Improve IMIGAMMA coverage. -------------------------------------------------------------------------- Gnumeric 1.12.26 Morten: * Fix potential crasher on showing initial window. -------------------------------------------------------------------------- Gnumeric 1.12.25 Jean: * Add support in recent files dialog for multiple selesction and double click. [#759160] Morten: * Fix TABLE problems. [#752181] [#752178] [#752182] * Fuzzed file fixes. [#752179] [#752180] * Add R.DGUMBEL, R.PGUMBEL, R.QGUMBEL. * Fix conditional format problem. [#750271] * Test also RANDWEIBULL and RANDLOGNORM. * Fix problem with R.QHYPER * Add R.DRAYLEIGH, R.PRAYLEIGH, R.QRAYLEIGH. * Fix GUI translation problems. * Fix bugs with merged cells. [#504004] * Make builds more reproducible. * Improve ssdiff for validation. * Fix problem with xls export of list validation. [#557555] -------------------------------------------------------------------------- Gnumeric 1.12.24 Jean: * Fix printing of sheet objects with one cell or absolute anchors. [#753961] * Fix snap to grid for one cell or absolute anchored objects. [#754792] * On export, just change the extension, not more. [ubuntu #1497344]
2017-10-03*: Recursive PKGREVISION bump for vala 0.38 update.wiz1-2/+2
2017-09-28py-scipy: Remove references to non-existent fileswiz1-7/+1
2017-09-27py-infinity: update to 1.4adam3-24/+16
1.4: - Added __hash__ method
2017-09-27py-networkx: update to 2.0adam3-117/+335
NetworkX 2.0 Support for Python 3.6 added, drop support for Python 3.3.
2017-09-26Removed math/py-ephem3 successor math/py-ephemadam5-153/+1
2017-09-26py-ephem: update to 3.7.6.0adam3-29/+17
Version 3.7.6.0: The new ephem.cities.lookup() function runs a Google geocoding search and returns an Observer object for the top result. When an Earth satellite position cannot be computed, PyEphem now raises an exception instead of freezing and locking up Python. Upgraded to the libastro from XEphem 3.7.6, bringing improvements to Earth satellite transit calculations. GitHub issue 76: Earth satellite velocity is now calculated with greater accuracy. GitHub issue 64: rising and setting routines are now careful to restore your Observer.date even if they die with an exception. GitHub issue 56: Earth satellites now raise an exception for dates a year or more from their TLE epoch, because libastro refuses to process old elements and would return nonsense coordinates. GitHub issue 44: a segmentation fault would eventually kill Python 3 if a script called Body.copy() either directly or via the Standard Library copy.copy() function.
2017-09-26p5-Math-Prime-Util: update to 0.67.wiz2-7/+7
0.67 2017-09-23 [ADDED] - lastfor stops forprimes (etc.) iterations - is_square(n) returns 1 if n is a perfect square - is_polygonal(n,k) returns 1 if n is a k-gonal number [FUNCTIONALITY AND PERFORMANCE] - shuffle prototype is @ instead of ;@, so matches List::Util. - On Perl 5.8 and earlier we will call PP instead of trying direct-to-GMP. Works around a bug in XS trying to turn the result into an object where 5.8.7 and earlier gets lost. - We create more const integers, which speeds up common uses of permutations. - CSPRNG now stores context per-thread rather than using a single mutex-protected context. This speeds up anything using random numbers a fair amount, especially with threaded Perls. - With the above two optimizations, randperm(144) is 2.5x faster. - threading test has threaded srand/irand test added back in, showing context is per-thread. Each thread gets its own sequence and calls to srand/csrand and using randomness doesn't impact other threads.
2017-09-26Update ltm (libtommath) to 1.0.1 to get MP_GEN_RANDOM_MAX etcmspo3-27/+11
v1.0.1 -- Dmitry Kovalenko provided fixes to mp_add_d() and mp_init_copy() -- Matt Johnston contributed some improvements to mp_div_2d(), mp_exptmod_fast(), mp_mod() and mp_mulmod() -- Julien Nabet provided a fix to the error handling in mp_init_multi() -- Ben Gardner provided a fix regarding usage of reserved keywords -- Fixed mp_rand() to fill the correct number of bits -- Fixed mp_invmod() -- Use the same 64-bit detection code as in libtomcrypt -- Correct usage of DESTDIR, PREFIX, etc. when installing the library -- Francois Perrad updated all the perl scripts to an actual perl version
2017-09-26*: remove qt3 and the packages using it, including KDE3wiz14-296/+1
Announced in https://mail-index.netbsd.org/pkgsrc-users/2017/09/10/msg025556.html
2017-09-18py-numexpr: update to 2.6.4adam2-7/+7
Changes from 2.6.3 to 2.6.4 - Christoph Gohkle noticed a lack of coverage for the 2.6.3 `floor` and `ceil` functions for MKL that caused seg-faults in test, so thanks to him for that.
2017-09-18revbump for requiring ICU 59.xmaya2-3/+4
2017-09-17p5-Spreadsheet-Read: update to 0.74.wiz2-11/+8
0.74 - 27 Aug 2017, H.Merijn Brand * Re-enable opening files with bad characters in the filename (issue#14) 0.73 - 30 Jul 2017, H.Merijn Brand * Spreadsheet::XLSX::Reader::LibXML support completely dropped * New options for ss2tk (font specs and SS labels) * Safer xls2csv option parsing/passing * Pass unknown command-line options to the parser * Fix ReadData ("a,b,c\n1,2,3\n", parser => "csv") * Drop 5.8.0 support. 5.8.1 is now minimum 0.72 - 25 May 2017, H.Merijn Brand * get_active_sheet is only available as of Spreadsheet::ParseExcel 0.61 * Support password protected spreadsheets (implementation just for Excel) * Do not warn on undefined labels (xlscat) 0.71 - 13 May 2017, H.Merijn Brand * Use -w as intended * Add option pivot * No trailing spaces on xlscat -L * Lexicalize code snippet (issue#12) * Add attr method * Remove special chars from worksheet name component (Windows, PR#13) * Add refresh to ss2tk / csv2tk * Add shortcut for UTF-8 output to xlscat * Upgrade recommended modules to required for cpancover
2017-09-17p5-Math-Prime-Util: update to 0.66.wiz2-17/+11
0.66 2017-09-12 [ADDED] - random_semiprime random n-bit semiprime (even split) - random_unrestricted_semiprime random n-bit semiprime - forderange { ... } n derangements iterator - numtoperm(n,k) returns kth permutation of n elems - permtonum([...]) returns rank of permutation array ref - randperm(n[,k]) random permutation of n elements - shuffle(...) random permutation of an array [FUNCTIONALITY AND PERFORMANCE] - Rewrite sieve marking based on Kim Walisch's new simple mod-30 sieve. Similar in many ways to my old code, but this is simpler and faster. - is_pseudoprime, is_euler_pseudoprime, is_strong_pseudoprime changed to better handle the unusual case of base >= n. - Speedup for is_carmichael. - is_frobenius_underwood_pseudoprime checks for jacobi == 0. Faster. - Updated Montgomery inverse from Robert Gerbicz. - Tighter nth prime bounds for large inputs from Axler 2017-06. Redo Ramanujan bounds since they're based on nth prime bounds. - chinese objectifies result (i.e. big results are bigints). - Internal support for Baillie-Wagstaff (pg 1402) extra Lucas tests. - More standardized Lucas parameter selection. Like other tests and the 1980 paper, checks jacobi(D) in the loop, not gcd(D). - entropy_bytes, srand, and csrand moved to XS. - Add -secure import to disallow all manual seeding.
2017-09-17p5-Math-GMP: update to 2.15.wiz2-15/+8
2.15 2017-06-25 Shlomif - Bump required perl version to 5.10.x. - There were test failures with 5.8.x and even 5.10.x is old enough. - http://www.cpantesters.org/cpan/report/256184b2-58bf-11e7-a074-e1beba07c9dd
2017-09-17p5-Algorithm-Cluster: update to 1.53.wiz2-9/+7
Changes not found.
2017-09-17py-sympy: update to 1.1.1adam3-78/+245
Changes 1.1.1: Units ----- Fix an issue with the Quantity Add postprocessor in Python 3.6. Support functions with quantities and dimensions. Fix addition of a quantity and a number. Workaround power of a quantity. Fix SI prefix definitions Core ---- Fix the Add/Mul postprocessor logic for subclasses. Fix various recursion issues in the Add assumptions that prevented isympy from working with the cache off. Fix some test failures on 32-bit systems. Allow for complex NumPy scalars in sympify. Code generation --------------- Only call asarray in lambdify on Python builtin numeric types. Fixes lambdify for array subclasses such as xarray. Fix using preprocessor_statements kwarg in CCodeGen. Matrices -------- Fix stacking of empty matrices. Other ----- Build the docs with the latest version of Sphinx. Fixes the search functionality being broken in the docs. Fix the language classifiers in setup.py
2017-09-16Drop maintainership.alnsn1-2/+2
2017-09-16Reset maintainerwiz4-8/+8
2017-09-16pari: uses perl unsafe @INCtnn1-1/+2
2017-09-14Update eigen3 to 3.3.4prlw15-79/+198
Changes that might impact existing code Eigen 3.3 fixes a few shortcomings that might impact existing code: * Eigen 3.3 clarifies the usage of the Index type in SparseMatrix, PermutationMatrix, Transpositions, as detailed below. * The normalize and normalized methods will now leave their input unchanged if its norm is 0 or too close to 0. Previously this resulted in a vector containing NaNs or infinities. * internal::significant_decimals_impl is deprecated and users of custom scalar types are encouraged to overload NumTraits<>::digits10(). In Eigen 3.3, the evaluation mechanism of expressions has been completely rewritten. c.f. http://eigen.tuxfamily.org/index.php?title=3.3 Looks as though C++11 support was added and Eigen 2 support removed. Detailed changelog: http://eigen.tuxfamily.org/index.php?title=ChangeLog#Eigen_3.3.4
2017-09-14py-numexpr: update to 2.6.3adam2-7/+7
Changes from 2.6.2 to 2.6.3 - Documentation now available at readthedocs.io_. - Support for floor() and ceil() functions added by Caleb P. Burns. - NumPy requirement increased from 1.6 to 1.7 due to changes in iterator flags. - Sphinx autodocs support added for documentation on readthedocs.org. - Fixed a bug where complex constants would return an error, fixing problems with `sympy` when using NumExpr as a backend. - Fix for 277 whereby arrays of shape (1,...) would be reduced as if they were full reduction. Behavoir now matches that of NumPy. - String literals are automatically encoded into 'ascii' bytes for convience.
2017-09-13maxima: update to 5.40.0.wiz3-16/+160
Maxima 5.40 change log ====================== New items in core: ------------------ [0eda309] New functions encode_time and decode_time, with test cases. New items in share: ------------------- [534a7d1] add symplectic_ode package [46a7a0f] Add Kaplan-Meier's survival and empirical distribution estimators Changes in core: ---------------- [cb259bb] change O(n^2) method for flattening list to O(n) method. [21cf8e1] split totient into two parts [6ef2b26] optimized gcfactor and tried to make it easier to read. [1594167] optimize gc squaring and inline gctime1 [d7ff7c3] inline gctimes. [4c8b6c6] sped up psumsq. [f306940] speeded up imodp. [efadb61] new implementation of ; is about a factor of 2 faster on sbcl [9c79308] move jacbi and related functions from rat3c to numth [75d8ceb] sped up divsum by splitting it in two parts where the lower Numerous cross-compiling changes. Numerous documentation changes and improvements. Build/installation improvements. Many updates to examples. Many changes and improvements to test system. Changes in share: -------------- [9c7c70c] Commit new version of COMA. Sent by Wilhelm Haager [0ef9ab0] Check for a constant "variable" of integration in romberg and bromberg [834ffb3] Import ODEPACK fortran code. [06bc1bd] Julia() and mandelbrot() are modified to create maxoutXXX.gnuplot [dca80e3] plotdf: An option to change the arrow density. Patch from themusicgod1. Bug fixes: ---------- [6ff1570] fix bug 3291: ecl on Linux needs utf-8 [db7788f] fix bug3300 Incorrect sha256sum output [b896d1f] In rtest_translator, skip some tests which cause a crash (bug #3291). [f1bc324] Implement numerical evaluation for gamma_greek. Fixes SF bug #3277. [eec3d7f] In tests for kill(props), work around bug #3289. [6267b88] In lsquares_mse, ensure temporary variable is assigned the correct value. #3282. [b58a547] In lsquares_mse, ensure temporary variable is assigned the correct value. #3282. [a7239b1] In RISCHLOGEPROG, detect zero divisor. This fixes SF bug #3274. [eaacba6] Unlock :common-lisp package when compiling with SBCL. Fixes SF bug #3271. [71ee1c0] Fix bug #2740: demo(romberg) fails [5fb8f81] Add test for bug #2295: Failure to evaluate definite integral [35c625e] Add tests for bug #2314: Two different results for an integral [56fb70e] In tests for simplify_sum, add a few more tests from bug report #3236. Unnumbered bugs: ---------------- [06c0fc7] operatingsystem: Make chdir work with recent gcl versions. [7277f54] gcfactor(4/(%i+1)) gave an internal error in $bothcoef. [c477689] Give informative error message when some index is not an integer: "rat(-1) isn't an integer?" from mailing list 2017-03-04. [96c57d5] work around bug in gcl decode-universal-time. [b4819b4] work around bug in gcl decode-universal-time. [a36bf53] When evaluating float(diff(...)), apply float only to the first argument. Fixes bug reported to mailing list 2017-02-27. [bffe54f] In GETL-LM-FCN-PROP, return NIL for argument which is not a symbol. Fixes bug reported to mailing list 2017-03-04. [ef1fa9e] Remove built-in symbols from the list for user-defined properties. Fixes bug reported to mailing list 2017-02-24. [70e05dd] Handle Lisp arrays in MQAPPLY expressions more carefully. Fixes bug reported to mailing list 2017-02-02. [761cc1c] Handle Lisp arrays in MQAPPLY expressions more carefully. Fixes bug reported to mailing list 2017-02-02. [b6dd08c] A solve() enhancement by Richard Fateman that should fix a zillion of bug tickets. [b6b5c5c] Translate define and ":=" correctly by nuking the translator property. Fixes bug reported to mailing list circa 2017-01-24. [5cfc6fd] Fix bernoulli and binomial pdfs when p=0 or p=1 [d6739e9] Fix bernoulli and binomial pdfs when p=0 or p=1 Maxima 5.39 change log ====================== New items in core: ------------------ New functions firstn and lastn Changes in core: ---------------- Special variable clean-up Crosscompiling support Gnuplot 5.0 or newer versions Documentation updates function save: portable way to save "fast" arrays (hash tables) functions timedate, parse_timedate: handle timezone offsets Floating point overflow handling Complex numericals Testsuite additions and improvements GIT fixes ODE improvements Load .wxm files from wxMaxima Temporary file handling improvements New in share: ------------- package decfp: decimal bigfloat package (thanks to Richard Fateman) Changes in share: ----------------- In some share test scripts, put reset() at the top package solver: rename solver.mac to Solver.mac package stringproc: new functions slessp, slesspignore, sgreaterp, sgreaterpignore (string comparison) package charsets: several updates and improvements; still work in progress package boolsimp: code clean-up; no functional changes package descriptive, functions continuous_freq, discrete_freq: faster counting algorithm; accept arrays as well as lists Bug fixes: ---------- [54822ea] Fixed bug #3258: diff with negative order in integrate [0e4ed41] Fix issue #3255 by changing how resimplification works [55ba236] In risplit, in preparation of fixing issue #3255 (logarc) [6e7f9dd] Partial fix #3216: In package lapack, load without compile [ad86a80] Fixed bug #3232: In ezunits, don't compile predicate functions [0ec66c6] Fixed GCL bug #49689: Mark a known failure in rtest11 [98b0349] Fixed bug #3213: Round when formatting bigfloats [3745efa] Another test for bug #3244. [67fd622] Fixed bug #3246: look-up entries for inv. trig antiderivatives [120d8be] Fixed bug #3241: In MQAPPLY1, call AMPERCHK [e916dd0] Fixed bug #3235: In RGRP, rephrase test for ECL [7060221] Add tests from bug #3221 [2204fca] Fixed bug #3221: elliptic_pi(n,z,m) wrong for z > %pi/2 [cb3dc1c] Fixed bug #453: algsys fails in simple case [7efa7eb] Add tests from SF bug 2059. [4851e2c] Add tests from SF [bugs:2038] and [bugs:#2736] 640ca75 SF [bug:#1266][bug:#3208] Don't use $radcan when simplifying in algsys. 2986fc0 Fix SF [bugs:#3208]. Use sqrtdenest in algsys to simplify partial solutions. 5fd2f55 [bugs:#3208] algsys.lisp:presultant: resimplify result 4734ec8 share-subdirs.lisp is auto-generated *and* in version control - which is afaik unavoidable for the lisp-only build system. It also currently is out-of-sync with the repo => Updated the repo version. f91d677 Increase output when running share/contrib/diffequations/tests a5873ba SF bugs 3210 and 3212. Fix algsys regressions. 9a4694f Bug #2796 can't load ode2 with n declared constant 3c6c473 Bug report ID: 1621 Wrong solution to ode2 cf9cbb2 Fixed bug #2667: Distinguish trig function exponents in TeX bf4cf94 In rtest_log, additional tests for SF bug #3105. 9ef3fee Fixed bug #3148: Most of the change is in indentation 8f523fc Fixed bug #3194: No simplification of tan(x+n*%pi) and cot(x+n*%pi) fdadebc Fixed bug #3186 and other get_plot_option issues. 3fd2b4c Fixed bug #3022: Update the RPM spec file aa0a365 Fixed bug #3180: declare(foo, antisymmetric) 9ad3f2f Add test for SF bug #3090 a57ff0c Add test for SF bug #3170 4568937 Fixed bug #3144: Avoid unbounded recursion in PTIMES%E 0bcccbe Fixed bug #3109: is(sin(x) <= 1) returns "unknown" 037ea4a Fixed bugs #3114, #3115: introduced by [647516] Fix integrate(x=0,x) Unnumbered bugs: ---------------- [c8007b9] Partial fix to read_xpm. [35790e2] Correct documentation for rest [eb56614] Fix test for orderlessp transitive [85aff4c] Fix in gcl-builds smismatch [d37c3e4] Fix in timedate, round TZ [74800c2] Remove redundant definition of copy from share/affine [8ec3a05] Another fix for summation of rational functions [394ca66] In package facexp, remove "&&" because [b7ee537] Ensure that *OPR-TABLE* associates "{" with $SET [9f43849] Ran update_examples on Simplification.texi [dd6fbb1] Fix uses of complex-float-numerical-eval-p [07363c2] Fix bug in running test files [6d1b6fe] Partially fixed assumptions regarding products and powers [639dd40] Partially fixed assumptions regarding products and powers [691cbc4] Fix taylor testsuite failure bug introduced by [22f4fd]
2017-09-12recursive bump for qt5-qtwebkit dependency changewiz1-2/+2
2017-09-11Update blas and lapack to 3.7.1.wiz5-146/+48
Reduce pkgsrc patches by depending on gmake. No changelog found.
2017-09-10Updated mpfr to 3.1.6.wiz2-7/+7
Changes from version 3.1.5 to version 3.1.6: - Improved MPFR manual. - Bug fixes (see <http://www.mpfr.org/mpfr-3.1.5/#fixed> and ChangeLog file). - Autotools: Under Linux, make sure that the old dtags (when supported) are used if LD_LIBRARY_PATH is defined; otherwise "make check" would check an installed, compatible MPFR library found in LD_LIBRARY_PATH instead of the one that has been built with "make".
2017-09-10math/R: fix build on fbsdrumko1-1/+5
cpow and clog are not implemented on FreeBSD and the configure checks only emit warnings instead of errors. Ok@ markd
2017-09-10Drop maintainership - I don't use math/R-XML.alnsn1-2/+2
2017-09-08Recursive revbump associated with update of ocaml to 4.05jaapb3-6/+6
2017-09-08Update HOMEPAGE.wiz1-2/+2
2017-09-08Recursive revbump from audio/pulseaudio-11.0ryoon1-2/+2
2017-09-06Remove teTeX* packages and references to them.wiz1-2/+1
teTeX was desupported in 2006, and we have texlive in pkgsrc since 2009.
2017-09-06Comment out dead sites.wiz1-2/+2
2017-09-04Update some URLs.wiz1-2/+2
2017-09-04Follow some redirects.wiz5-10/+10
2017-09-04Update HOMEPAGE.wiz1-2/+2
2017-09-04Comment out dead sites.wiz1-4/+3
2017-09-03Comment out dead MASTER_SITES/HOMEPAGEs.wiz2-4/+4
2017-08-31Fix gnome-calculator PLISTprlw11-4/+30