[Pkg-octave-commit] [octave-symbolic] branch master updated (1511628 -> f2e499c)

Rafael Laboissière rlaboiss-guest at moszumanska.debian.org
Sat Mar 14 21:09:54 UTC 2015


This is an automated email from the git hooks/post-receive script.

rlaboiss-guest pushed a change to branch master
in repository octave-symbolic.

      from  1511628   Release to experimental.
      adds  1e91c79   Imported Upstream version 2.1.0
       new  2c2eb26   Merge tag 'upstream/2.1.0'
       new  f2e499c   Update package description

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |  13 --
 DESCRIPTION                                        |   9 +-
 HOWTO-release.md                                   |  33 ++++-
 NEWS                                               |  41 ++++++
 TODO.md                                            |  17 +--
 debian/control                                     |  11 +-
 extract_tests_for_matlab.m                         |   2 +-
 inst/@sym/all.m                                    |   8 ++
 inst/@sym/and.m                                    |   4 +-
 inst/@sym/any.m                                    |   8 ++
 inst/{@symfun => @sym}/argnames.m                  |  28 ++--
 inst/@sym/assume.m                                 | 100 +++++++++++--
 inst/@sym/assumeAlso.m                             |  74 +++++++---
 inst/@sym/ccode.m                                  |   8 +-
 inst/@sym/coeffs.m                                 |  22 ++-
 inst/@sym/{uplus.m => columns.m}                   |  22 ++-
 inst/@sym/degree.m                                 |  91 ++++++++++++
 inst/@sym/diff.m                                   |   4 +-
 inst/@sym/disp.m                                   |  38 ++++-
 inst/@sym/display.m                                |  82 +++++++++--
 inst/@sym/dsolve.m                                 |   1 +
 inst/@sym/expand.m                                 |   2 +-
 inst/@sym/ezplot.m                                 |   4 +-
 inst/@sym/ezplot3.m                                |   4 +-
 inst/@sym/{uplus.m => formula.m}                   |  25 ++--
 inst/@sym/fortran.m                                |   8 +-
 inst/@sym/function_handle.m                        |  12 +-
 inst/@sym/horner.m                                 |  30 ++--
 inst/@sym/horzcat.m                                |   4 +-
 inst/@sym/ilaplace.m                               |   3 +-
 inst/@sym/isempty.m                                |  32 ++++-
 inst/@sym/isequal.m                                |   4 +-
 inst/@sym/isequaln.m                               |   4 +-
 inst/@sym/{erf.m => ismatrix.m}                    |  34 ++---
 inst/@sym/isnan.m                                  |   4 +-
 inst/@sym/isvector.m                               |   5 +-
 inst/@sym/laplace.m                                |   3 +-
 inst/@sym/lu.m                                     |   4 +-
 inst/@sym/mpower.m                                 |  12 +-
 inst/@sym/ne.m                                     |   4 +-
 inst/@sym/not.m                                    |   3 +-
 inst/@sym/numden.m                                 |  66 +++++++++
 inst/@sym/or.m                                     |   3 +-
 inst/@sym/partfrac.m                               |  44 ++++--
 inst/@sym/potential.m                              |   5 +-
 inst/@sym/pretty.m                                 |   3 +-
 inst/@sym/private/make_sym_matrix.m                |   5 +-
 inst/@sym/{ => private}/mat_access.m               |   0
 inst/@sym/{ => private}/mat_mask_access.m          |  13 +-
 inst/@sym/{ => private}/mat_mask_asgn.m            |  32 ++---
 inst/@sym/{ => private}/mat_rccross_access.m       |  15 +-
 inst/@sym/{ => private}/mat_rclist_access.m        |   9 +-
 inst/@sym/{ => private}/mat_rclist_asgn.m          |  21 +--
 inst/@sym/{ => private}/mat_replace.m              |   2 +
 inst/@sym/prod.m                                   |  40 +++++-
 inst/@sym/{uplus.m => rows.m}                      |  22 ++-
 inst/@sym/size.m                                   |  39 +++++-
 inst/@sym/solve.m                                  |   5 +-
 inst/@sym/subs.m                                   |  76 +++++++---
 inst/@sym/subsasgn.m                               |  77 +++++++++++
 inst/@sym/subsref.m                                |  58 ++++++++
 inst/@sym/sum.m                                    |  39 ++++--
 inst/@sym/sym.m                                    |  97 ++++++++-----
 inst/@sym/sym2poly.m                               |  56 +++++---
 inst/@sym/symprod.m                                | 154 +++++++++++++++++++--
 inst/@sym/symsum.m                                 | 137 ++++++++++++++++--
 inst/@sym/taylor.m                                 |   4 +-
 inst/@sym/trace.m                                  |   2 +-
 inst/@sym/vertcat.m                                |   4 +-
 inst/@sym/xor.m                                    |   9 ++
 inst/@symfun/argnames.m                            |  20 ++-
 inst/@symfun/diff.m                                |   4 +-
 inst/@symfun/formula.m                             |  77 +++++++++++
 inst/@symfun/symfun.m                              |  31 ++++-
 inst/assumptions.m                                 |  13 +-
 inst/evalpy.m                                      |   4 +-
 inst/poly2sym.m                                    |  36 +++--
 inst/private/extractblock.m                        |   6 +-
 inst/private/python_header.py                      |  44 ++++--
 .../ipermute.m => private/valid_sym_assumptions.m} |  19 +--
 inst/python_cmd.m                                  |  18 +--
 inst/python_cmd_string.m                           |  65 ---------
 inst/sympref.m                                     |   2 +-
 inst/syms.m                                        |  90 +++++++++---
 inst/test_bugs.tst                                 |   2 +-
 make_release_packages.sh                           |   5 +-
 make_windows_package.sh                            |   4 +-
 matlab_smt_differences.md                          |  81 ++++++-----
 88 files changed, 1793 insertions(+), 582 deletions(-)
 copy inst/{@symfun => @sym}/argnames.m (68%)
 copy inst/@sym/{uplus.m => columns.m} (71%)
 create mode 100644 inst/@sym/degree.m
 copy inst/@sym/{uplus.m => formula.m} (66%)
 copy inst/@sym/{erf.m => ismatrix.m} (62%)
 create mode 100644 inst/@sym/numden.m
 rename inst/@sym/{ => private}/mat_access.m (100%)
 rename inst/@sym/{ => private}/mat_mask_access.m (90%)
 rename inst/@sym/{ => private}/mat_mask_asgn.m (81%)
 rename inst/@sym/{ => private}/mat_rccross_access.m (85%)
 rename inst/@sym/{ => private}/mat_rclist_access.m (86%)
 rename inst/@sym/{ => private}/mat_rclist_asgn.m (88%)
 rename inst/@sym/{ => private}/mat_replace.m (99%)
 copy inst/@sym/{uplus.m => rows.m} (71%)
 create mode 100644 inst/@symfun/formula.m
 copy inst/{@sym/ipermute.m => private/valid_sym_assumptions.m} (71%)
 delete mode 100644 inst/python_cmd_string.m

-- 
Alioth's /home/groups/pkg-octave/bin/git-commit-notice on /srv/git.debian.org/git/pkg-octave/octave-symbolic.git



More information about the Pkg-octave-commit mailing list