Next | Query returned 111 messages, browsing 21 to 30 | Previous

History of commit frequency

CVS Commit History:


   2009-04-07 19:30:25 by Min Sik Kim | Files touched by this commit (2) | Package updated
Log message:
Update mathomatic to 14.3.6.

Changes since 14.2.7:
12/23/08 - Simplified makefile.
12/26/08 - Fixed rules for simplifying "(x^n)^m" so \ 
"misc/john.in" and
           others simplify better.  Works similar to Maxima now.
12/27/08 - Numeric GCD now properly returns the other parameter, if
           either parameter is 0.  Renamed "misc/polyroots.c" to
           "misc/roots.c" and simplified this example code.
12/30/08 - Added "update" script, which updates the function
	   prototypes in "cproto.h".
1/1/09 - Optionally factor out the gcd of integer coefficients when
         improving readability, for example: 6x+4y becomes 2*((3*x) +
         (2*y)).  This is now the default.
1/13/09 - Added descriptions of all interesting math scripts in
	  "tests/README.txt".
1/16/09 - Allow nintegrate and "integrate definite" commands in the
          symbolic math library; the bounds are specified in the two
          equation spaces following the current equation.
1/18/09 - Made expression and equation entry always consecutively
          numbered equation spaces, unless memory is exhausted.
1/19/09 - Made consistent list command output with only one newline
	  after each equation space.
1/21/09 - Fixed erroneous doubling of parentheses display when solving
	  and showing steps with "set debug 2".
1/22/09 - Added -b option, to conveniently set bold color mode from
	  the command line.
1/25/09 - Improved looks of eliminate command by not solving if
	  equation is already solved.
2/3/09 - Table of contents was added to the Mathomatic User's Manual.
2/5/09 - Added display of any numerical fractions when calculating or
         using calculate command; for example, entering "1/2+3/8" now
         results in "answer = 0.875 = 7/8".
2/6/09 - Removed erroneous lsqrt() routine obtained from Wikipedia, so
         that matho-sumsq works properly now.
2/7/09 - Disable pause command when appropriate (when input not a tty
         and for symbolic math library).
2/8/09 - Polished up educational example scripts in "tests" directory.
2/11/09 - Entry of a function now results in "Named functions
	  currently not implemented" error message.
2/12/09 - Bugfix to matho-primes and added "misc/limits.c".
2/15/09 - The fraction command was fixed to give better results.  "set
          display2d" flag now no longer affects any results at all, it
          only affects 2D output mode.
2/17/09 - Renamed -h (HTML) option to -x, -h is now the help option.
          Added -w option to set wide output mode.
3/9/09 - Found the correct formulas for solving the general cubic
         equation on Wikipedia, so "tests/cubic.in" always gives
         correct answers now.
3/12/09 - Tweak made to simplify result beautifier: factoring priority
          only given to real variables now, special constant variables
          pi#, e#, and i# have no effect and behave like any constant
          now.
3/15/09 - Corrected and improved parse_complex() C function for more
          complex number functionality and a bug fix.
3/18/09 - Added "set negate_highest_precedence" option, which allows
          the negate operator to be the lower precedence of times and
          divide, like it is in Maxima and most other math programs.
3/24/09 - Made "set no autosolve" mode more useful by making it solve
          if a solve variable is entered with an equals sign.  This
          allows easy entry of both single variable expressions (with
          no =) and solve variables (with =) while in this mode.
3/27/09 - Selecting equations by entering the equation number was
          returning with error if the equation space was empty.
          Fixed, you can now select any previously allocated equation
          space.
   2008-12-21 03:02:26 by Min Sik Kim | Files touched by this commit (3)
Log message:
Update mathomatic to 14.2.7.

Numerous improvements since 14.0.5. See
http://mathomatic.orgserve.de/changes.txt for the complete list of changes.
   2008-06-21 19:23:26 by Min Sik Kim | Files touched by this commit (4)
Log message:
Update mathomatic to 14.0.5.

Major changes since 12.8.0:
- Improved the "solve verify" command option.
- Added "derivative nosimplify" command option.
- Added "simplify sign" command option.
- More correct simplification restriction added.
- Disallow variable name "all" in expressions.
- Turned off readline file name completion.
- Implemented integral divide operator "//".
   2008-03-04 19:12:59 by Johnny C. Lam | Files touched by this commit (30)
Log message:
Mechanical changes to add DESTDIR support to packages that install
their files via a custom do-install target.
   2007-11-22 00:36:24 by Min Sik Kim | Files touched by this commit (2)
Log message:
Update mathomatic to 12.8.0.

Changes since 12.7.7:
10/10/07 - Proper error reporting for shelling out (! command).
10/12/07 - Created directory "m4" to play with using m4 to allow easily
entering functions through macros.
10/14/07 - Improved "set dir" to display the new current directory and to
default to the home directory.
10/17/07 - Entering "=" by itself now swaps equation sides instead of doing
nothing.
10/18/07 - New "mathomatic.ico" file with transparent background.
10/21/07 - Increased speed of taylor command up to 3 times by not doing an
unnecessary simplification.
           Added "tests/distance.in".
10/22/07 - Fixed a small problem in calculate command, allowing instant
calculation of (2+2i)^99 now.
           Entering any power of any complex number should work now.
10/29/07 - Solving now reports what degree polynomial the equation is.
11/12/07 - Fixed 3 bugs in optimize command.
11/16/07 - Fixed another bug in optimize command.
   2007-10-13 17:27:53 by Min Sik Kim | Files touched by this commit (2)
Log message:
Update mathomatic to 12.7.7.

Changes:
 - Stabilized simplify command.
   2007-09-16 18:53:13 by Min Sik Kim | Files touched by this commit (3)
Log message:
Update mathomatic to 12.7.6.

Changes since 12.7.2:
Improved documentation.
Added display of maximum memory usage to version command.
Allow read command in the Mathomatic library and fixed memory leak with it.
Added echo command per a user's request.
Improved factoring out constants, to make all coefficients reduced integers by
  factoring out their gcd.
Added gcd_verified() function, to weed out false floating point gcds.
Made limit command say whether it is substituting or solving.
Added "mathomatic.desktop" and "mathomatic.png", which are \ 
the desktop and
  icon files for Linux.
Minor code, documentation, and makefile improvements.
Added "tests/quartic.in" and fixed incomplete simplification in the \ 
calculate
  command.
Allow upper case when parsing infinity constant name "inf", required \ 
by CygWin
  version and maybe others.
The makefiles no longer strip the created executables.
Reordered source code so many functions can be defined returning \ 
"void" (which
  means no return value).
Added "tests/how_limit_works.in" tutorial and restored \ 
"doc/notes.html".
Testing change to only one kind of partial unfactoring (partial_flag =
  true/false, default true), completely distinct from full unfactoring. Used
  throughout, let me know if this breaks anything.
Added "simplify fraction" option, which simplifies like Maxima's ratsimp().
   2007-06-15 15:40:36 by Min Sik Kim | Files touched by this commit (2)
Log message:
Update mathomatic to 12.7.2.

Changes:
- Added order parameter to extrema command, which specifies the number of
  derivatives to take.
- Renamed flist command to "display".
   2007-05-23 04:31:03 by Min Sik Kim | Files touched by this commit (2)
Log message:
Update mathomatic to 12.7.1.

Changes:
- Remove GPL preamble in "primes/*.c", so everything is LGPL.
- Allow entering "e#" and "i#" as "e" and \ 
"i". Display "e", "i", and "pi" as
  "e#", "i#", and "pi#".
- Require a space between command and command line, so variables don't get
  confused with commands. This is a bug fix.
- Added a directory named "hard_stuff".
- Fixed error in "tests/finance.in".
   2007-04-23 00:45:07 by Min Sik Kim | Files touched by this commit (1)
Log message:
Update HOMEPAGE.

Next | Query returned 111 messages, browsing 21 to 30 | Previous