summaryrefslogtreecommitdiff
path: root/math
AgeCommit message (Collapse)AuthorFilesLines
2010-07-15Bump revision after math/mpfr update.asau2-4/+4
2010-07-15Update MPFR to version 3.0.0.asau4-35/+19
Contributed by Stathis Kamperis on IRC. Changes from versions 2.4.* to version 3.0.0: - The "boudin aux pommes" release. - MPFR 3.0.0 is binary incompatible with previous versions but (almost) API compatible. More precisely the obsolete functions mpfr_random and mpfr_random2 have been removed, the meaning of the return type of the function mpfr_get_f has changed, and the return type of the function mpfr_get_z is now int instead of void. In practice, this should not break any existing code. - MPFR is now distributed under the GNU Lesser General Public License version 3 or later (LGPL v3+). - Rounding modes GMP_RNDx are now MPFR_RNDx (GMP_RNDx kept for compatibility). - A new rounding mode (MPFR_RNDA) is available to round away from zero. - The rounding mode type is now mpfr_rnd_t (as in previous versions, both mpfr_rnd_t and mp_rnd_t are accepted, but mp_rnd_t may be removed in the future). - The precision type is now mpfr_prec_t (as in previous versions, both mpfr_prec_t and mp_prec_t are accepted, but mp_prec_t may be removed in the future) and it is now signed (it was unsigned in MPFR 2.*, but this was not documented). In practice, this change should not affect existing code that assumed nothing on the precision type. - MPFR now has its own exponent type mpfr_exp_t, which is currently the same as GMP's mp_exp_t. - Functions mpfr_random and mpfr_random2 have been removed. - mpfr_get_f and mpfr_get_z now return a ternary value. - mpfr_strtofr now accepts bases from 37 to 62. - mpfr_custom_get_mantissa was renamed to mpfr_custom_get_significand (mpfr_custom_get_mantissa is still available via a #define). - Functions mpfr_get_si, mpfr_get_ui, mpfr_get_sj, mpfr_get_uj, mpfr_get_z and mpfr_get_z_2exp no longer have cases with undefined behavior; in these cases, the behavior is now specified, and in particular, the erange flag is set. - New functions mpfr_buildopt_tls_p and mpfr_buildopt_decimal_p giving information about options used at MPFR build time. - New function mpfr_regular_p. - New function mpfr_set_zero. - New function mpfr_digamma. - New function mpfr_ai (incomplete, experimental). - New functions mpfr_set_flt and mpfr_get_flt to convert from/to the float type. - New function mpfr_urandom. - New function mpfr_set_z_2exp (companion to mpfr_get_z_2exp, which was renamed from mpfr_get_z_exp in previous versions). - Speed improvement for large operands in the trigonometric functions (mpfr_sin, mpfr_cos, mpfr_tan, mpfr_sin_cos): speedup of about 2.5 for 10^5 digits, of about 5 for 10^6 digits. - Speed improvement for large operands of the inverse trigonometric functions (arcsin, arccos, arctan): about 2 for 10^3 digits, up to 2.7 for 10^6 digits. - Some documentation files are installed in $docdir. - The detection of a GMP build directory (more precisely, the internal header files of GMP) was previously done separately from the use of the --with-gmp-build configure option. This was not consistent with the documentation and with other parts of the configure script. So, as of MPFR 3.0.0, the internal header files of GMP are now used if and only if the --with-gmp-build configure option is given. - The configure script recognizes some extra "long double" formats (double big endian, double little endian, double-double big endian). - MPFR manual: added "API Compatibility" section. - Test coverage: 97.1% lines of code. - Bug fixes.
2010-07-14Recursive PKGREVISION bump for the net/mDNSResponder updatesbd1-2/+2
2010-07-13Changes 4.44:adam2-6/+6
The following suffixes for variables and constraints were implemented in the MathProg language: .lb (lower bound), .ub (upper bound), .status (status in the solution), .val (primal value), and .dual (dual value). Now the MathProg language allows comment records (marked by '#' in the very first position) in CSV data files read with the table statements. Note that the comment records may appear only in the beginning of a CSV data file. The API routine glp_cpp to solve the Critical Path Problem was added and documented.
2010-07-06update to 5.30.2drochner2-6/+6
changes: translation updates
2010-07-05Update to FriCAS 1.1.0asau3-20/+20
Notable changes (compared to version 1.0.9) include: - New domains and packages: VectorSpaceBasis domain, DirichletRing domain, 3D graphic output in Wavefront .obj format, specialized machine precision numeric vectors and matrices (faster then general vectors and matrices), Html output. - Support Clifford algebras corresponding to non-diagonal matrix, added new operations. - 'normalize' now tries to simplify logarithms of algebraic constants. - New functions: Fresnel integrals, carmichaelLambda. - Speed improvements: several polynomial operations are faster, faster multiplication in Ore algebras, faster computation of strong generating set for permutation groups, faster coercions. - Several improvements to the guessing package (in particular new option Somos for restricting attention to Somos-like sequences Bug fixes, in particular: - FriCAS can now compute multiplicative inverse of a power series with constant term not equal to 1. - Fixed a problem with passing interpreter functions to algebra. - Two bugs causing crashes in HyperDoc interface are fixed. - FriCAS now ignores sign when deciding if number is prime. - A failing coercion that used to crash FriCAS is now detected. - 'has' test sometimes gave wrong result. - Plotting fixes.
2010-07-03Changes 2.11.1:adam6-19/+18
* R CMD INSTALL checks if dependent packages are available early on * in the installation of source packages, thereby giving clearer error messages. * R CMD INSTALL --build now names the file in the format used for Mac OS X binary files on that platform. * BIC() in package stats4 now also works with multiple fitted models, analogously to AIC(). * Use of file extension .C for C++ code in packages is now deprecated: it has caused problems for some 'make's on case-insensitive file systems (although it currently works with the recommended toolkits). * The C function mkCharLenCE now no longer reads past 'len' bytes (unlikely to be a problem except in user code). * On systems without any default LD_LIBRARY_PATH (not even /usr/local/lib), [DY]LIB_LIBRARY_PATH is now set without a trailing colon. * More efficient utf8ToInt() on long multi-byte strings with many multi-byte characters. * aggregate.ts() gave platform-depedent results due to rounding error for ndeltat != 1. * package.skeleton() sometimes failed to fix filenames for .R or .Rd files to start with an alphanumeric.
2010-06-27Fix configure handling of Magick optionjoerg2-9/+23
2010-06-18Adjust patch to upstream commit.obache2-12/+14
2010-06-17Fixes build failure on NetBSD-5.0.2.obache2-1/+34
Use fgets(3) instead of getline(3).
2010-06-17Update HOMEPAGE from Old(pre-GNOME, caltool) one.obache1-2/+2
2010-06-17Improve DESCR,obache1-8/+4
remove "From the README" and update from the README without version number.
2010-06-17Require gtk2+>=2.18.0obache1-2/+2
2010-06-15update to 1.10.5drochner3-11/+13
changes: -bugfixes -better tests -Include version number in HTML export -Improve page setup dialog -Add non-linear solver
2010-06-15update to 5.30.1drochner3-161/+541
This switches to the gnome-2.30 release branch
2010-06-14PKGREVISION bump for png-1.4.x shlib change.wiz1-2/+2
(missed those and *emacs* the first time round because they pull in their png dependencies via default-on options; they were included in the test bulk build though)
2010-06-13Bump PKGREVISION for libpng shlib name change.wiz21-33/+42
Also add some patches to remove use of deprecated symbols and fix other problems when looking for or compiling against libpng-1.4.x.
2010-06-09Update py-rpy to 2.1.3markd4-45/+179
Works with recent R and recent python.
2010-06-06Update to scipy 0.7.2markd3-15/+44
SciPy 0.7.2 is a bug-fix release with no new features compared to 0.7.1. The only change is that all C sources from Cython code have been regenerated with Cython 0.12.1. This fixes the incompatibility between binaries of SciPy 0.7.1 and NumPy 1.4. SciPy 0.7.1 is a bug-fix release with no new features compared to 0.7.0.
2010-06-02Added graphicsmagick as an option, fixing PR#43218adam1-2/+8
2010-05-29Update py-Scientific to 2.8.obache5-43/+117
Based on PR#43282 by Wen Heping. 2.7.9 --> 2.7.10 ---------------- Bug fixes: - Removed all occurrences of "as" as a variable name for compatibility with Python 2.6. - Installation without the netCDF module did not work. Improvements: - Vector.dyadicProduct() was replaced by a more efficient implementation. - Scientific.IO.PDB: Atom objects now have a parent attribute whose value is the containing group. 2.7.8 --> 2.7.9 --------------- License change: ScientificPython is now distributed under the CeCILL-C license, which is an adaptation of the LGPL to French law. The previously used CeCILL license, similar to the GPL, was considered too restrictive. Bug fixes: - MPI interfaces did not work correctly with NumPy and/or Python 2.5. Improvements: - Compilation script for mpipython works around a Python configuration bug under MacOS X. - Docstrings have been cleaned up. 2.7.7 --> 2.7.8 --------------- Bug fixes: - Due to a typo in Scientific.IO.PDBSpaceGroups, some space group names were not found in the space group table. Improvements: - Vector objects can now be multiplied with NumPy scalar objects (which is what you get when extracting numbers from NumPy arrays). Due to the way NumPy scalars handle multiplication, the result used to be an array rather than a Vector, which caused various applications to crash. - The build procedure under Windows has been improved. It can generate a binary installer that includes the netCDF DLL, making ScientificPython independent of a netCDF installation. 2.7.6 --> 2.7.7 --------------- Bug fixes: - Installation on Windows didn't work because the Unix maths libraries don't exist there. Improvements: - InterpolatingFunction and TensorField objects can represent periodic functions/fields. - DistributedComputing: the watchdog period of slave processes is now a user-definable parameter. - PDBSpaceGroups was simplified, making it shorter and faster to load. - Scientific.N contains the array type object in the variable array_type. This makes it possible to write Pyrex modules using arrays in such a way that they always use the numeric module for which ScientificPython was compiled. 2.7.5 --> 2.7.6 --------------- Bug fixes: - NumPy compatibility fixes. - Pyro 3.6 compatibility fix in DistributedComputing.MasterSlave 2.7.4 --> 2.7.5 --------------- New features: - Scaling, inversion, and shear transformations added to Geometry.Transformations Improvements: - PDB parser handles CRYST1, SCALEn and MTRIXn records - Better identification of the Numerics package that is being used Bug fixes: - Scientific_affinitypropagation.c compiles with NumPy 2.7.3 --> 2.7.4 --------------- New features: - New module Clustering.AffinityPropagation. - New class BSP.ParRootSequence. Bug fixes: - Replaced float equality test in Functions.InterpolatingFunction - Removed exception for order > 1 in Derivatives.DerivVar.__init__ - Fixed reading of non-string attributes from netCDF files. Improvements: - New methods getBinIndices and getBinCount in Statistics.Histogram.Histogram - Physics.PhysicalQuantities: unit definitions added to doc string 2.7.2 --> 2.7.3 --------------- Improvements: - Added multi-module setup for master-slave computations. - More information available through task_manager. - task_manager can start slave processes. 2.7.1 --> 2.7.2 --------------- Bug fixes: - Scientific_netcdf would not compile with NumPy under Python 2.4 because NumPy also defined Py_ssize_t. 2.7 --> 2.7.1 ------------- Improvements: - NumPy compatibility. Scientific_netcdf was revised by hand. The Python code was run through numpy.oldnumeric.alter_code1 to identify the critical sections, which were then all handled in some way. It is possible that there are still incompatibilities of the kind that numpy.oldnumeric.alter_code1 cannot detect 2.5.12hg --> 2.7 ---------------- New features: - Subpackage Scientific.DistributedComputing for easy parallelization of independent tasks. 2.5.11 --> 2.5.12hg ------------------- Bug fixes: - VRML2 output would crash for scenes containing Line objects - Pyrex implmentation of vector objects could crash instead of raising an exception in divide operations. - Pyrex implmentation of vector objects would raise exceptions incorrectly under Python 2.5 Improvements: - builds Macintosh packages with documentation and examples 2.5.10 --> 2.5.11 ----------------- Bug fixes: - Pyrex implementation of vector objects raised exceptions in comparisons - Pyrex implementation of vector objects did not accept negative indices - Some object deletions during conversion to epydoc had to be reversed Improvements: - Two test suites 2.5.9 --> 2.5.10 ---------------- Bug fixes: - Fixed netCDF error handling Improvements: - Support for NumPy (not very well tested yet) - Scientific.NumberDict more efficient 2.5.8 --> 2.5.9 --------------- Improvements: - Scientifc.IO.NetCDF supports the new 64-bit data structures in Python 2.5 (not yet tested on a 64-bit machine) - Docstrings modified for use with Epydoc. 2.5.7 --> 2.5.8 --------------- Bug fixes: - Syntax error in Scientific.IO.PDB - Attribute deletion in netCDF file and variable objects caused a crash. 2.5.6 --> 2.5.7 ---------------- Bug fixes: - Tensor-vector multiplication was incorrect with the Pyrex implementation of vector objects. 2.5.5 --> 2.5.6 ---------------- Bug fixes: - Scientific.BSP.ParClass did not pass on __call__ and __getitem__ to local class - Scientific.BSP.ParClass: Class wrappers did not always return the right global object. 2.5.4 --> 2.5.5 ---------------- Bug fixes: - Scientific.IO.NetCDF.NetCDFVariable.assignValue() had incomplete error reporting. Some errors would not raise exceptions as required. 2.5.3 --> 2.5.4 ---------------- Improvements: - A "test" method on MPI request objects permits to check if data is available (thanks to Jakob Schiotz for this addition). Bug fixes: - The new Pyrex vector objects could not be pickled. 2.5.1 --> 2.5.3 ---------------- Improvements: - The class Scientific.Geometry.Vector has been reimplemented in Pyrex, yielding much faster vector operations. There is, however, the restriction that the vector elements must be of type "float". For the rare applications where this condition is not fulfilled (such as Scientific.Functions.Derivatives.DerivVector), the Python implementation remains accessible as Scientific.Geometry.VectorModule.Vector. 2.4.9 --> 2.5.1 ---------------- Improvements: - Vector and Tensor objects permit comparison with other types of objects (which always return False) - Numarray can be used instead of Numeric as far as possible (see README for details) 2.4.7 --> 2.4.9: ---------------- Bug fixes: - Integer array attributes caused a TypeError with recent versions of Numeric (that don't do silent casts from Long to Int any more). Additions: - Method "threeAngles" in Geometry.Transformation.Rotation. 2.4.6 --> 2.4.7: ---------------- Bug fixes: - Scientific.BSP: alltrue() and anytrue() sometimes returned wrong results. Additions: - Scientific.Visualization.VMD can now correctly launch VMD under Windows
2010-05-28math/orpie was broken by an ocaml update three years ago and nobody steppedtnn6-59/+1
up to fix it, so let's remove it for now.
2010-05-21Changes 4.43:adam2-7/+6
* This is a maintainer release. * `configure.ac' was changed to allow building the package under Mac OS and Darwin with ODBC support. * The SQL table driver was improved to process NULL data. * Some bugs were fixed in the LP/MIP preprocessor. Changes 4.42: * The new API routines were added. * The new command-line options were added to the stand-alone solver glpsol.
2010-05-20update to 0.9.3drochner6-49/+42
This switches from Qt3 to Qt4.
2010-05-19+ TinySVMobache1-1/+2
2010-05-19Import TinySVM-0.09 as math/TinySVM.obache6-0/+74
TinySVM is an implementation of Support Vector Machines (SVMs) [Vapnik 95], [Vapnik 98] for the problem of pattern recognition. Support Vector Machines is a new generation learning algorithms based on recent advances in statistical learning theory, and applied to large number of real-world applications, such as text categorization, hand-written character recognition.
2010-05-17update to 0.10.3drochner3-10/+10
changes: -UI improvements -bugfixes -Improve error handle for complex functions -Improve IMPOWER
2010-05-16Update pear-Numbers_Words package to 0.16.2.taca2-6/+6
Changelog: * Fixed bug #16435 (improper use of substr() in Polish extension); * Fixed bug #16667 (wrong spelling of 40 in Hungarian extension) (Vlajos); * Fixed bug #16733 (incorrect rounding of cents); * Added optional dependency on Math_BigInteger; * Improved unit tests (Daniel O'Connor).
2010-05-15Changes 0.9.2:adam4-23/+32
* To compile fityk, Boost (only headers) and xylib must be installed first. Fityk tarball does not contain a copy of boost and xylib now. * user-defined functions: split functions can be defined in this way: SplitG(h, c, w1, w2) = x < c ? Gaussian(h, c, w1) : Gaussian(h, c, w2) * added info-numeric-format option * a couple of bug fixes Changes 0.9.1: * added cfityk to Windows installer * Unix only: fitting can be interrupted by the INT signal * changed output of "info errors", see the manual for details * GUI: "plot in @n" changes selected datasets (useful in scripts) * many bugs fixed Changes 0.9.0: * GUI: Data > Editor dialog was replaced with two dialogs: Data > Table and Data > Edit Transformations * added Lua bindings (configure option --enable-lua) * a syntax to execute output from external program: command ! program [args...] * xyConvert (which requires wx 2.9) is built by default. Added flag --disable-xyconvert, which must be used with wx 2.8. * parsing of info command was rewritten, but functionality is almost the same * bug fixes
2010-05-15Changes 0.6:adam3-15/+18
* fixed reading of Bruker v3 files * changes in API, added C API Changes 0.5: * added support for compressed files \*.gz (requires zlib) and \*.bz2 (bzlib)
2010-05-07Update to Maxima 5.21.1:asau3-7/+11
New items in core: * plot3d: multiple surfaces; built-in spherical transformation Other revisions: * revision of hypergeometic functions * extension of Bessel functions * extension of abs_defint function * extension of Riemann zeta function * limits of signum functions * package draw: new graphic object 'tube' Bug fixes: 2979579: plot3d with format xmaxima does not work in Xmaxima 2976744: postscript terminal requires manual reset of default termina 2976657: Usage of gammagreek and %gammagreek 2974616: mat_cond 2969599: integrate bug? 2968344: gamma_incomplete(1.0, 4.368265444147715e+19) fails 2968174: Integration of hypergeometric bug 2965201: run_testsuite() causes Lisp error 2965115: 2*%e,numer -> single float precision 2962943: simplifya gives Lisp error for a cons 2961822: sinh(0.0b0) causes Maxima to abort 2957758: plotting gamma_incomplete_regularized incorrect 2954141: Kummer reflection 2953369: Definite Integration of 1/(a-b*cos(x)) wrong 2949677: hypergeometric floating point 2948800: integrate((1-cos(2*x)^2)^2/x^4,x,0,inf) wrong 2945609: incomplete/misleading documentation of coeff 2943581: Grind omits empty strings 2943400: 'linel' command can crash 'maxima' 2938716: too much evaluation in translated code 2938177: simplify_sum(sum(k^n,k,1,m)) -> stack overflow 2938078: Crash on attached input 2937837: find_root_error documentation incorrect 2935631: bfloat(log(n)) can be different from log(bfloat(n)) 2933996: abs_integrate bug 2933440: sqrt(-z^2) simplifies to %i*sqrt(z^2) for z complex 2932096: allroots fails for real polynomial. 2927502: abs() or cabs() are much slower than just sqrt(re^2+im^2) 2924831: file_type is wrong for ccl on mac os x 2921946: Expansion of bessel_k(1/2,x) with radexpand:false 2920190: non-integer value for maxposex 2919296: binomial sums 2914376: implicit_plot error 2914296: Limit gets Maxima stuck 2914176: Conversion of rational to bfloat is inaccurate 2913614: LAPACK: dgesvd is broken 2911891: gcfac gives Lisp error 2910437: non-repeatable beta_incomplete(1b0,1,z) 2910001: optimization of bfloat input 2909980: optimization for log of bfloats 2909917: documentation type -- jornan 2907952: diff of a taylor series 2907815: sold variable in diag(x) (package diag) should be local 2907727: Incorrect Integral with option integrate_use_rootsof 2892710: Allow easier library access 2880797: bad answer in integrate(sqrt(sin(t)^2+cos(t)^2),t,0,2*%pi) 2875784: fourier integral incorrect 2859856: csign(log(x)) --> pnz 2852992: sqrt(-1/x)-%i/sqrt(x) not zero 2843621: GosperSum error 2808861: list function arguments with mode_declare in translate 2786017: realonly in algsys.lisp 2607007: legend does not work 1869296: hgfred([1,2],[6],1) bogus 1857562: hgfred([a,b],[c], 0) -/--> 1 1633149: sum bug that never happens 1620165: assoc needs to check argument, was: Strange error 1531688: hgfred([ ], [ ], 0) 1440286: documentation for 'listofvars' 1440069: euler numbers & zerobern 1376392: limit(x/(2+sin(1/x)), x, 0); wrong result 1372264: no user doc for 'numer_pbranch' 1219846: properties of translated functions 1106912: limit(x/sin(x)^2,x,inf) 1010768: sqrt(1/z) - 1/sqrt(z) => 0 932095: ode2 redundant asksign 910270: 1/+3*x parses as 1/(+3*x) 903166: assume works for real values only 900860: Simplifications involving abs 893633: depends(a,[b,b,b]) 856209: inconsistency between facts() and facts(v) 840848: trigreduce doesn't enter unknown functions 811522: redundant question in limit 781657: binomial(x,x) => 1, but binomial(-1,-1) => 0 777564: subtraction \"-\"(a,b) should work/FIX 776441: orderlessp not transitive 767556: Distributing operations over = 767528: op(box(a)) bogus 752417: KEEPFLOAT:TRUE ignored by SOLVE 719968: No SIMP function 710307: orderlessp of bfloat, %e, and inf 660876: taylor and keepfloat ERR 655270: Incomplete integration 643254: orderlessp([rat(x)], [rat(x)]) 593351: limit/sin(inf)etc. should give 0, not IND
2010-05-06Changes 2.11.0:adam6-180/+36
* Packages must have been installed under R >= 2.10.0, as the current help system is the only one now supported. * A port to 64-bit Windows is now available as well as binary package repositiories: see the 'R Administration and Installation Manual'. * Argument matching for primitive functions is now done in the same way as for interpreted functions except for the deliberate exceptions call switch .C .Fortran .Call .External all of which use positional matching for their first argument, and also some internal-use-only primitives. * The default device for command-line R at the console on Mac OS X is now quartz() and not X11(). New features * The 'open' modes for connections are now interpreted more consistently. * R CMD INSTALL now uses the internal untar() in package utils. * help(try.all.packages = TRUE) is much faster. * R CMD check has a new option '--timings' to record per-example timings in file <pkg>.Rcheck/<pkg>-Ex.timings. * The TRE library has been updated to version 0.8.0 (minor bugfixes). More...
2010-05-04teapot is a spread sheet program for UNIX, which uses modern conceptshauke5-0/+92
besides being portable and extensible, for instance three dimensional tables and iterative expressions. The most important feature is the funktional addressing of cells, unlike the traditional approach like A0, C5, etc. which is probably inherited from VisiCalc.
2010-05-04Add teapot, a CLI spreadsheet application.hauke1-1/+2
2010-04-28update to 1.10.2drochner3-9/+12
changes: -improvements to ODF support -UI improvements -bugfixes -documentation updates
2010-04-25Don't hardcode Python version number. This fixes the build with Python 2.6.tron1-2/+2
2010-04-24Use BSD_INSTALL_LIB to install shared objects.asau2-12/+14
Rediscovered by Taylor R. Campbell in PR 43205
2010-04-24Update to 1.4.1.gls3-10/+9
From Wen Heping in PR pkg/43204. This minor release removes datetime support, which fixes the binary incompatibility issues with SciPy and other packages. It also includes several bug fixes. No new features are introduced. Bugs fixed ---------- - #1336: Fix for 1299 exposes Bus error on Sparc - #1379: CPU ID not set correctly on PARISC - #1388: frombuffer calls PyErr_Format without throwing an error - log1p - kaiser for M=1 - paver execution on Windows 7 for Python 2.6 - several fixes to Chebyshev and Polynomial
2010-04-17remove broken http mirror.zafer1-3/+2
2010-04-13update to 0.9.7drochner4-45/+13
changes: General build updates and bug fixes, including the ability to build against cln >= 1.2
2010-04-13update to 0.9.7drochner6-111/+20
changes: -General build updates and bug fixes -Bug fix for segfaults with some uses of integrate() -New Simplified Chinese translation -Fix crash with unsupported operator in RPN syntax -Fix reduction of vector size
2010-04-13update to 1.3.1drochner2-7/+6
This release fixes a crash in double_approx(cl_RA) on 64-bit platforms and adds basic support for Renesas SH (sh4).
2010-03-31Update ruby-rb-gsl package to 1.14.3.taca4-39/+28
Mon Mar 22 23:54:07 MDT 2010 * GSL-1.14 support * Added GSL::Multiset class * Added GSL::Function#glfixed(a, b table) Sun Aug 16 19:01:31 BOT 2009 * Added Non-negative Matrix Factorization (NMF) support (by Roman Shterenzon) Sat Aug 8 22:36:24 BOT 2009 * Added GSL-1.13 features: * Added GSL::Monte::Miser#params_get, GSL::Monte::Vegas#params_get * Added GSL::BSpline::greville_abscissa(i) * Added GSL::Poly#eval_derivs(x) * Added a new minimization algorithm "quad_golden" * Added a new multimin algorithm "nmsimplex2rand" Tue Jun 9 10:42:30 JST 2009 * Fixed bug in linalg.c (bug [#25842]) Thu Feb 2 12:16:38 JST 2009 * Fixed a bug in GSL::Histogram.alloc_uniform() (bug [#23040]) * Fixed a bug in GSL::Vector#/ (bug [#23334]) Thu Nov 6 17:34:18 JST 2008 * Match with the tensor extension version 0.99 * now not compatible for the versions older than tensor-0.97. Sat Jul 26 08:23:45 JST 2008 * GSL::Poly.eval now handles complex numbers (GSL-1.11) * Added new quasi-random generators "halton" and "reversehalton" * Added a module function GSL::MultiFit::linear_residuals() (GSL-1.11) * Fixed a bug in ODE solver Mon Jun 30 22:07:24 JST 2008 * Fixed GSL::Vector#normalize (#20865) Mon May 26 19:21:15 JST 2008 * Fixed a bug in GSL::Matrix::to_v (#19757) * Fixed a bug in GSL::Vector::Int multiplication (#19924)
2010-03-24Recursive revision bump for GMP update, 2nd part.asau4-7/+8
2010-03-24Recursive revision bump for GMP update.asau12-16/+24
2010-03-20Take MAINTAINER.schmonz1-2/+2
2010-03-20DESTDIR support.schmonz3-9/+49
2010-03-18Remove two constants that are not defined by gsl any longer (since 1.13).wiz3-2/+25
Fixes build, but bump PKGREVISION anyway since there were some packages with this version that did build. Set LICENSE.
2010-03-18+ ksegasau1-1/+2
2010-03-17Detect if the fortran compiler/libs have etime as an intrinsic or not insteaddmcmahill4-7/+46
of hard coding it. This package builds with both f2c and gfortran now.