summaryrefslogtreecommitdiff
path: root/math
AgeCommit message (Collapse)AuthorFilesLines
2014-06-27Request GNU texinfo as a tool to avoid build failure when it is missing.asau1-1/+2
2014-06-26FreeBSD 10 is not FreeBSD 1.asau2-3/+13
2014-06-14+py-infinityrodent1-1/+2
2014-06-14Import py27-infinity-1.3 as math/py-infinity.rodent5-0/+49
All-in-one infinity value for Python. Can be compared to any object.
2014-06-11I don't need to be MAINTAINER for this.schmonz1-2/+2
2014-06-11Add and enable p5-Number-Range.schmonz1-1/+2
2014-06-11Initial import of p5-Number-Range 0.11.schmonz3-0/+23
Number::Range is an object-oriented interface to test if a number exists in a given range, and to be able to manipulate the range.
2014-06-10Bump PostgreSQL default version to 9.3.joerg1-2/+2
2014-06-10Update to 1.8.1wen3-17/+59
Upstream changes: Networkx-1.8.1 Release date: 4 August 2013 Bugfix release for missing files in source packaging Networkx-1.8 Release date: 28 July 2013 Highlights Faster (linear-time) graphicality tests and Havel-Hakimi graph generators Directed Laplacian matrix generator Katz centrality algorithm Functions to generate all simple paths Improved shapefile reader More flexible weighted projection of bipartite graphs Faster topological sort, decendents and ancestors of DAGs Scaling parameter for force-directed layout Bug Fixes Error with average weighted connectivity for digraphs, correct normalized laplacian with self-loops, load betweenness for single node graphs, isolated nodes missing from dfs/bfs trees, normalize HITS using l1, handle density of graphs with self loops Cleaner handling of current figure status with Matplotlib, Pajek files now don't write troublesome header line, default alpha value for GEXF files, read curved edges from yEd GraphML
2014-06-06Update to 0.18wen3-12/+46
Upstream changes: --0.18-- Released December 31, 2013 Linear algebra: * added qr() for matrix QR factorization (contributed by Ken Allen) * added functions eigsy(), eighe(), eig() to compute matrix eigenvalues (contributed by Timo Hartmann) * added functions svd(), svd_r(), svd_c() for singular value decomposition of matrices (contributed by Timo Hartmann) * added calculation of Gaussian quadrature rules for various weight functions (contributed by Timo Hartmann) * improved precision selection in exp_pade() (contributed by Mario Pernici) Special functions: * fixed ellippi() to return an inf instead of raising an exception * fixed a crash in zeta() with huge arguments * added functions for computing Stirling numbers (stirling1(), stirling2()) * improved the computation of zeros of zeta at high precision (contributed by Juan Arias de Reyna) * fixed zeta(-x) raising an exception for tiny x * recognize when lerchphi() can call zeta() or polylog(), handling those cases faster Compatibility: * fixed gmpy2 compatibility issues (contributed by Case Van Horsen) * better solutions for python 2/3 compatibility, using Benjamin Peterson's six.py * fixes to allow mpmath to run in non-sage mode when sage is available * support abstract base classes (contributed by Stefan Krastanov) * use new-style classes to improve pypy performance Other: * added Levin, Sidi-S and Cohen/Villegas/Zagier series transformations (contributed by Timo Hartmann) * added isfinite() utility function * fixed a problem with bisection root-finding * fixed several documentation errors * corrected number of coefficients returned by diffs() with method='quad' * fixed repr(constant) being slow at high precision * made intervals hashable
2014-06-05Don't force std::pow into the global namespace. See comment for furtherjoerg2-1/+19
details.
2014-05-31+ hs-scientificszptvlfn1-1/+2
2014-05-31Import scientific-0.2.0.2 as math/hs-scientific,szptvlfn5-0/+61
packaged for wip. A Scientific number is an arbitrary-precision floating-point number represented using scientific notation. A scientific number with coefficient c and base10Exponent e corresponds to the Fractional number: fromInteger c * 10 ^^ e Its primary use-case is to serve as the target of parsing floating point numbers. Since the textual representation of floating point numbers use scientific notation they can be efficiently parsed to a Scientific number.
2014-05-29Bump for perl-5.20.0.wiz64-115/+128
Do it for all packages that * mention perl, or * have a directory name starting with p5-*, or * depend on a package starting with p5- like last time, for 5.18, where this didn't lead to complaints. Let me know if you have any this time.
2014-05-28+ hs-natsszptvlfn1-1/+2
2014-05-28Import nats-0.1.3 as math/hs-nats,szptvlfn5-0/+51
packaged for wip by pho. Natural numbers.
2014-05-17Bump applications PKGREVISIONs for python users that might be usingwiz1-1/+2
python3, since the default changed from python33 to python34. I probably bumped too many. I hope I got them all.
2014-05-15Revbump after updating graphics/giflibadam5-10/+10
2014-05-13Requires PCRE.joerg1-1/+2
2014-05-12Fix build under OpenBSD/amd64 5.5ryoon3-3/+21
2014-05-09Mark packages that are not ready for python-3.3 also not ready for 3.4,wiz11-22/+22
until proven otherwise.
2014-05-05Recursive revbump from x11/pixmanryoon18-33/+36
Fix PR pkg/48777
2014-05-04+LICENSErodent1-1/+2
2014-05-04Don't multi-line MASTER_SITES.rodent1-4/+4
2014-05-03Update to R 3.1.0markd4-25/+41
NEW FEATURES: * type.convert() (and hence by default read.table()) returns a character vector or factor when representing a numeric input as a double would lose accuracy. Similarly for complex inputs. If a file contains numeric data with unrepresentable numbers of decimal places that are intended to be read as numeric, specify colClasses in read.table() to be "numeric". * tools::Rdiff(useDiff = FALSE) is closer to the POSIX definition of diff -b (as distinct from the description in the man pages of most systems). * New function anyNA(), a version of any(is.na(.)) which is fast for atomic vectors, based on a proposal by Tim Hesterberg. * arrayInd(*, useNames = TRUE) and, analogously, which(*, arr.ind = TRUE) now make use of names(.dimnames) when available. * is.unsorted() now also works for raw vectors. * The "table" method for as.data.frame() (also useful as as.data.frame.table()) now passes sep and base arguments to provideDimnames(). * uniroot() gets new optional arguments, notably extendInt, allowing to auto-extend the search interval when needed. The return value has an extra component, init.it. * switch(f, ...) now warns when f is a factor, as this typically happens accidentally where the useR meant to pass a character string, but f is treated as integer (as always documented). * The parser has been modified to use less memory. * The way the unary operators (+ - !) handle attributes is now more consistent. If there is no coercion, all attributes (including class) are copied from the input to the result: otherwise only names, dims and dimnames are. * colorRamp() and colorRampPalette() now allow non-opaque colours and a ramp in opacity via the new argument alpha = TRUE. (Suggested by Alberto Krone-Martins, but optionally as there are existing uses which expect only RGB values.) * grid.show.layout() and grid.show.viewport() get an optional vp.ex argument. * There is a new function find_gs_cmd() in the tools package to locate a GhostScript executable. (This is an enhanced version of a previously internal function there.) * object.size() gains a format() method. * There is a new family, "ArialMT", for the pdf() and postscript() devices. This will only be rendered correctly on viewers which have access to Monotype TrueType fonts (which are sometimes requested by journals). * The text and PDF news files, including NEWS and NEWS.2, have been moved to the doc directory. * combn(x, simplify = TRUE) now gives a factor result for factor input x (previously user error). * Added utils::fileSnapshot() and utils::changedFiles() functions to allow snapshots and comparison of directories of files. * make.names(names, unique=TRUE) now tries to preserve existing names. * New functions cospi(x), sinpi(x), and tanpi(x), for more accurate computation of cos(pi*x), etc, both in R and the C API. Using these gains accuracy in some cases, e.g., inside lgamma() or besselI(). * print.table(x, zero.print = ".") now also has an effect when x is not integer-valued. * There is more support to explore the system's idea of time-zone names. Sys.timezone() tries to give the current system setting by name (and succeeds at least on Linux, OS X, Solaris and Windows), and OlsonNames() lists the names in the system's Olson database. Sys.timezone(location = FALSE) gives the previous behaviour. * Platforms with a 64-bit time_t type are allowed to handle conversions between the "POSIXct" and "POSIXlt" classes for date-times outside the 32-bit range (before 1902 or after 2037): the existing workarounds are used on other platforms. (Note that time-zone information for post-2037 is speculative at best, and the OS services are tested for known errors and so not used on OS X.) Currently time_t is usually long and hence 64-bit on Unix-alike 64-bit platforms: however it several cases the time-zone database is 32-bit. On R for Windows it is 64-bit (for both architectures as from this version). * The "save.defaults" option can include a value for compression_level. * colSums() and friends now have support for arrays and data-frame columns with 2^31 or more elements. * as.factor() is faster when f is an unclassed integer vector (for example, when called from tapply()). * fft() now works with longer inputs, from the 12 million previously supported up to 2 billion. * Complex svd() now uses LAPACK subroutine ZGESDD, the complex analogue of the routine used for the real case. * Sweave now outputs .tex files in UTF-8 if the input encoding is declared to be UTF-8, regardless of the local encoding. The UTF-8 encoding may now be declared using a LaTeX comment containing the string %\SweaveUTF8 on a line by itself. * file.copy() gains a copy.date argument. * Printing of date-times will make use of the time-zone abbreviation in use at the time, if known. For example, for Paris pre-1940 this could be LMT, PMT, WET or WEST. To enable this, the "POSIXlt" class has an optional component "zone" recording the abbreviation for each element. For platforms which support it, there is also a component "gmtoff" recording the offset from GMT where known. * (On Windows, by default on OS X and optionally elsewhere.) The system C function strftime has been replaced by a more comprehensive version with closer conformance to the POSIX 2008 standard. * dnorm(x, log = FALSE) is more accurate (but somewhat slower) for |x| > 5. * Some versions of the tiff() device have further compression options. * read.table(), readLines() and scan() have a new argument to influence the treatment of embedded nuls. * Avoid duplicating the right hand side values in complex assignments when possible. This reduces copying of replacement values in expressions such as Z$a <- a0 and ans[[i]] <- tmp: some package code has relied on there being copies. Also, a number of other changes to reduce copying of objects; all contributed by or based on suggestions by Michael Lawrence. * The fast argument of KalmanLike(), KalmanRun() and KalmanForecast() has been replaced by update, which instead of updating mod in place, optionally returns the updated model in an attribute "mod" of the return value. * arima() and makeARIMA() get a new optional argument SSinit, allowing the choice of a different *s*tate *s*pace initialization which has been observed to be more reliable close to non-stationarity. * warning() has a new argument noBreaks., to simplify post-processing of output with options(warn = 1). * pushBack() gains an argument encoding, to support reading of UTF-8 characters using scan(), read.table() and related functions in a non-UTF-8 locale. * all.equal.list() gets a new argument use.names which by default labels differing components by names (if they match) rather than by integer index. Saved R output in packages may need to be updated. * The methods for all.equal() and attr.all.equal() now have argument check.attributes after ... so it cannot be partially nor positionally matched (as it has been, unintentionally). A side effect is that some previously undetected errors of passing empty arguments (no object between commas) to all.equal() are detected and reported. There are explicit checks that check.attributes is logical, tolerance is numeric and scale is NULL or numeric. This catches some unintended positional matching. The message for all.equal.numeric() reports a "scaled difference" only for scale != 1. * all.equal() now has a "POSIXt" method replacing the "POSIXct" method. * The "Date" and "POSIXt" methods of seq() allows by = "quarter" for completeness (by = "3 months" always worked). * file.path() removes any trailing separator on Windows, where they are invalid (although sometimes accepted). This is intended to enhance the portability of code written by those using POSIX file systems (where a trailing / can be used to confine path matching to directories). * New function agrepl() which like grepl() returns a logical vector. * fifo() is now supported on Windows. * sort.list(method = "radix") now allows negative integers * Some functionality of print.ts() is now available in .preformat.ts() for more modularity. * mcparallel() gains an option detach = TRUE which allows execution of code independently of the current session. It is based on a new estranged = TRUE argument to mcfork() which forks child processes such that they become independent of the parent process. * The pdf() device omits circles and text at extremely small sizes, since some viewers were failing on such files. * The rightmost break for the "months", "quarters" and "years" cases of hist.POSIXlt() has been increased by a day. * The handling of DF[i,] <- a where i is of length 0 is improved. * hclust() gains a new method "ward.D2" which implements Ward's method correctly. The previous "ward" method is "ward.D" now, with the old name still working. Thanks to research and proposals by Pierre Legendre. * The sunspot.month dataset has been amended and updated from the official source, whereas the sunspots and sunspot.year datasets will remain immutable. The documentation and source links have been updated correspondingly. * The summary() method for "lm" fits warns if the fit is essentially perfect, as most of the summary may be computed inaccurately (and with platform-dependent values). Programmers who use summary() in order to extract just a component which will be reliable (e.g. $cov.unscaled) should wrap their calls in suppressWarnings().
2014-04-30Bump PKGREVISION for boehm-gc default-on threads, just to be onwiz3-6/+6
the safe side.
2014-04-28Don't use libfl. Bump revision.joerg4-14/+31
2014-04-25Update to 0.18.1, and add patches from upstream git to fix build withwiz6-8/+1117
isl-0.13. version: 0.18.1 date: Tue Jul 2 07:32:18 PDT 2013 changes: - Update to isl 0.12.1 - Support for OpenScop column coordinates - Consistent output on different platforms
2014-04-25Update to 0.13:wiz3-11/+25
version: 0.13 date: Mon Apr 14 11:08:45 CEST 2014 changes: - deprecate isl_int - improved support for multi piecewise quasi-affine expressions - allow the user to impose a bound on the number of low-level operations - add isl_id_to_ast_expr and isl_id_to_pw_aff - add isl_schedule_constraints - hide internal structure of isl_vec - remove support for piplib
2014-04-21Fix readline use.joerg3-1/+38
2014-04-21recursive bump for boehm-gc API bumpwiz3-4/+6
2014-04-16Update to 2.8.1. Switch to distutils.mk.wiz4-16/+14
2.8 --> 2.8.1 ------------- Improvements: - The installation procedure was updated to work with recent NumPy versions and in a wider range of environments.
2014-04-10recursive bump from ilmbase shlib version change.obache6-12/+12
2014-04-05Use RUBY_SUFFIX instead of RUBY_VER.obache1-1/+1
2014-04-02+libsvmrodent1-1/+2
2014-04-02Import libsvm-3.18 as math/libsvm.rodent4-0/+43
LIBSVM is an integrated software for support vector classification, (C-SVC, nu- SVC), regression (epsilon-SVR, nu-SVR) and distribution estimation (one-class SVM). It supports multi-class classification.
2014-04-01Changes 4.54:adam5-23/+74
Block-triangular LU-factorization was implemented to be used on computing an initial factorization of the basis matrix. A new version of the Schur-complement-based factorization module was included in the package. Now it can be used along with plain as well as with block-triangular LU-factorization. Currently the following flags can be used to specify the type of the basis matrix factorization (glp_bfcp.type): GLP_BF_LUF + GLP_BF_FT LUF, Forrest-Tomlin update (default) GLP_BF_LUF + GLP_BF_BG LUF, Schur complement, Bartels-Golub update GLP_BF_LUF + GLP_BF_GR LUF, Schur complement, Givens rotation update GLP_BF_BTF + GLP_BF_BG BTF, Schur complement, Bartels-Golub update GLP_BF_BTF + GLP_BF_GR BTF, Schur complement, Givens rotation update In case of GLP_BF_FT the update is applied to matrix U, while in cases of GLP_BF_BG and GLP_BF_GR the update is applied to the Schur complement. Corresponding new options --luf and --btf were added to glpsol. For more details please see a new edition of the GLPK reference manual included in the distribution. A minor bug (in reporting the mip solution status) was fixed. A call to "iodbc-config --cflags" was added in configure.ac to correctly detect iodbc flags.
2014-03-31Fix linking with gfortranadam2-4/+4
2014-03-31Update to 3.3.4:wiz2-7/+6
FFTW 3.3.4 * New functions fftw_alignment_of (to check whether two arrays are equally aligned for the purposes of applying a plan) and fftw_sprint_plan (to output a description of plan to a string). * Bugfix in fftw-wisdom-to-conf; thanks to Florian Oppermann for the bug report. * Fixed manual to work with texinfo-5. * Increased timing interval on x86_64 to reduce timing errors. * Default to Win32 threads, not pthreads, if both are present. * Various build-script fixes.
2014-03-26Fix build problem with ruby21.taca8-2/+244
2014-03-26Define _WITH_GETLINE for getline(3) on FreeBSD 9.asau1-1/+3
2014-03-17Use RUBY_SUFFIX instead of RUBY_VER.taca1-2/+2
2014-03-17Add GEM_CLEANBUOLD_EXTENSIONS.taca1-1/+2
2014-03-17Add GEM_EXTSDIR support.taca1-1/+2
2014-03-14Update to R 3.0.3. update from wen heping.markd8-148/+28
CHANGES IN R 3.0.3: NEW FEATURES: * On Windows there is support for making .texi manuals using texinfo 5.0 or later: the setting is in file src/gnuwin32/MkRules.dist. A packaging of the Perl script and modules for texinfo 5.2 has been made available at <URL: http://www.stats.ox.ac.uk/pub/Rtools/>. * write.table() now handles matrices of 2^31 or more elements, for those with large amounts of patience and disc space. * There is a new function, La_version(), to report the version of LAPACK in use. * The HTML version of 'An Introduction to R' now has links to PNG versions of the figures. * There is some support to produce manuals in ebook formats. (See doc/manual/Makefile. Suggested by Mauro Cavalcanti.) * On a Unix-alike Sys.timezone() returns NA if the environment variable TZ is unset, to distinguish it from an empty string which on some OSes means the UTC time zone. * The backtick may now be escaped in strings, to allow names containing them to be constructed, e.g. `\``. * read.table(), readLines() and scan() now warn when an embedded nul is found in the input. * KalmanForecast(fast = FALSE) is now the default, and the help contains an example of how fast = TRUE can be used in this version. (The usage will change in 3.1.0.) * strptime() now checks the locale only when locale-specific formats are used and caches the locale in use: this can halve the time taken on OSes with slow system functions (e.g. OS X). * strptime() and the format() methods for classes "POSIXct", "POSIXlt" and "Date" recognize strings with marked encodings: this allows, for example, UTF-8 French month names to be read on (French) Windows. * iconv(to = "utf8") is now accepted on all platforms (some implementations did already, but GNU libiconv did not: however converted strings were not marked as being in UTF-8). The official name, "UTF-8" is still preferred. * available.packages() is better protected against corrupt metadata files. * Finalizers are marked to be run at garbage collection, but run only at a somewhat safer later time (when interrupts are checked). This circumvents some problems with finalizers running arbitrary code during garbage collection (the known instances being running options() and (C-level) path.expand() re-entrantly).
2014-03-14Revert previous commit.wen2-6/+6
(1.7.11 require R-3.0.3) Reported by: joerg@(Thanks !)
2014-03-13Set USE_GCC_RUNTIME=yes for packages which build shared libraries but dojperkin2-2/+6
not use libtool to do so. This is required to correctly depend upon a gcc runtime package (e.g. gcc47-libs) when using USE_PKGSRC_GCC_RUNTIME.
2014-03-12Use C99 to fix build on SunOSwiedi1-1/+2
2014-03-11Upcate to 5.32.1ryoon3-466/+73
Changelog: Maxima 5.32 change log Changes not backward compatible: * share function graph2d: removed in favor of plot2d New items in core: * function limit: limits for fresnel_c and fresnel_s * function plot2d: adaptive plotting for parametric plots * functions round, truncate: distribute over lists and other aggregate types * function zn_characteristic_factors: Shanks characteristic factors New items in share: * new package smath: glue code for SMath Studio (notebook interface) * new package logic: some functions for Boolean expressions * package lapack: new function zheev (eigenvalues of Hermitian matrix) Changes in core: * function labels: make 'labels' an ordinary function (not argument-quoting) * plotting: more general color specification * plotting: rework plot options machinery * plotting: introduce some new options Other changes: * Build and install mgnuplot.exe under windows Bug fixes: 2668 Bigfloat Gamma Inaccurate for Small Inputs 2666 plotdf ignores first of [x, ...] or [y, ...] if there are no other options 2662 Maxima manual adjust 2660 lapack puts binary files in binary/binary-$foo/share/lapack/binary-$foo/lapack 2659 bug_report() directions for creating ticket need updating 2649 Correction for $matrix evaluation 2639 limit asks about internal variable 2634 zgeev does not operate on real matrices 2633 ev(integrate,numer) gives strange result 2630 inverse_jacobi_cn(-2.0, 3.0) generates an error 2629 elliptic_kc(3.0) not accurate 2628 fourier elimination on equality 2624 Erroneous limit result 2615 Numeric evaluation of inverse Jacobi elliptic functions is wrong for some inputs 2282 Problem in LISP with times function in sym unnumbered bugs: mailing list 2013-09-26: transcendental functions and compilation mailing list 2007-04-02: fixes a bug in plot2d-discrete GCL bug #40646 fixed (problem actually in Maxima) workaround GCL bug #40154 (some float literals parsed incorrectly) ensure that 'sign' does not make any changes to assume database. fix Postscript plotting on windows fix limit(-(3*n^2 + 1)*(-1)^n/sqrt(n^5 + 8*n^3 + 8),n,inf); fix bug in ldisplay and ldisp: need to display %t label fix: inv_mod(0,1) should return false fix cyclic-p, gf-eval, gf-irr-p fix gf-cminus-b, gf-prim-p fix bug in computing (.75b0+%i*1.5b0)^(%i/4) fix "describe" returning wrong entry with texinfo version 5 plots using the dumb gnuplot terminal were not being displayed in the terminal when the gnuplot_pipes is used Maxima 5.31 change log Changes in core: * Galois fields: revision, introduction of extension fields * inverse_jacobi_sn: improve accuracy * Bessel functions: integral of bessel_i, bessel_j of arbitrary order * matrix functions: revise ModeMatrix, mat_function, dispJordan, diag, JF * signum: do not declare signum real- or integer-valued * carg: declare carg real-valued * parser: add L, l, W, and w to list of exponent marker characters Changes in share: * package stringproc: new functions readchar, md5sum, base64 Other changes: * documentation: minor changes to make Texinfo 5 happy * build system: changes to make Maxima build correctly on Windows Bug fixes: * 2622 base64 type warnings * 2619 Function inverse_erf - error in numerical evaluation * 2612 known_units() broken * 2608 quad_qags(x,x) generates a lisp error * 2607 lbfgs documentation is incomplete * 2604 fft.dem is out of date * 2603 fft documentation * 2602 lu_factor regression * 2599 cl-info error handling * 2597 logcontract and subscripted log * 2594 Incorrect integration of product of cosines * 2591 risch gives Lisp error for sinh expression * 2583 sign error for integrate(x^(8*%i-1),x); * 2570 Make acos(cos(x)) simplify to x when on correct interval * 2569 translate rat(1,x) and rat([1]) incorrect * 2536 Lisp error in limit: \ * 2501 %pi/8 is definitely not an integer * 2475 limit(x^(mu/x^g),x,inf) --> error unnumbered bugs: * mailing list 2013-05-22: "array-lambda error with 5.30.0" * mailing list 2013-05-07: "defrule regression compare to version 5.29.1" * fix rk() when the independent variable's initial value is nonzero * fix bug in asksign * fix wrong noun form returned for jacobi_nc(elliptic_kc(m)/n,m) Maxima 5.30 change log Changes not backward compatible: * function gf_set: renamed to gf_set_data Other changes: * function bfzeta: extend to complex plane * function gf_set: return a structure * function gf_exp: allow negative exponents * functions plot2d, plot3d: accept subscripted variables as independent variables * package dynamics: revise function rk * package ezunits: new functions expand_dimensional, solve_dimensional, other changes * package linearalgebra(??): revise mat_function * ??: revise functions jordan, JF, diag Bug fixes: ??: limit((log(y+h)-log(y))/h,h,0,plus) 2561: limit(log(x^2),x,-20) gives 2*log(-20) 2559: 2557: abs_integrate leaks assumptions into enclosing context 2547: 2542: 2541: (FIXED??) 2540: 2531: Integration with inf 2529: limit(x^n,x,minf) gives minf for n positive 2528: imagpart etc. wrong when var declared real and complex 2527: exponent too big in limit 2517: 2509: fresnel_s incorrect for small values 2496: 2458: to_poly_solve gives a wrong solution for cos(x)=sin(3x) 2449: cabs(expr) fails when expr is 0 2442: arrayinfo gives a Lisp error 2441: 2412: Problems with integral (x/(exp(x)+1),x,0,inf) 2362: 2350: 2279: 2219: tex2ooo literals format 472: ctrl-D causes Maxima debugger to loop endlessly (clisp only) unnumbered bugs: mailing list circa 2013-03-30: load_pathname unset with maxima -b mailing list 2013-02-21: gamma_incomplete_regularized(a,0) returning the wrong noun form mailing list 2012-12-23: "let(simp) behaves different when loaded from batch file" mailing list 2012-12-14: "Maxima won,t pull out a constant from a linear function" bern() with zerobern:false clean up facts introduced by sign functions
2014-03-09Update to 1.0.14wen2-6/+6