pspp-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-commits] [SCM] GNU PSPP branch, master, updated. v1.6.0-12-g5e2aad


From: Ben Pfaff
Subject: [Pspp-commits] [SCM] GNU PSPP branch, master, updated. v1.6.0-12-g5e2aadfa3
Date: Wed, 1 Jun 2022 13:37:08 -0400 (EDT)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU PSPP".

The branch, master has been updated
       via  5e2aadfa3a7df06abf118bdac7e663d58fd52877 (commit)
       via  101250dc9f516758bd9d13f869f1a770d6dd1ca3 (commit)
       via  b9f712f8911170fcc049c6d7d83b6887185de4dd (commit)
       via  2a76184b55a8c229adc0b31d3436d29076de0ef8 (commit)
       via  71f9b6d6c14525cd41ba77c9fd50aa13d0da830c (commit)
       via  feb269112e14589474c0a75e96cd5a892d9aaeef (commit)
       via  922dfe227e0a157f895c025b8f8590e2bfc59f23 (commit)
       via  947e6378c28a6a33a2cd9ef4c4d90e001bdcc359 (commit)
       via  db9910816100d5c8dce9734e441efdcbf9e5b71a (commit)
       via  2fb9c1884efce402836c82d09bbece4eee74e068 (commit)
      from  409dfe7159b9b0fd96c67cfddd4ffa93e05aa9b2 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 5e2aadfa3a7df06abf118bdac7e663d58fd52877
Author: Ben Pfaff <blp@cs.stanford.edu>
Date:   Sun Feb 13 11:07:22 2022 -0800

    lexer: New function lex_ofs_representation().
    
    This interface is more convenient for situations where it's easier to
    consume tokens before getting their representations.

commit 101250dc9f516758bd9d13f869f1a770d6dd1ca3
Author: Ben Pfaff <blp@cs.stanford.edu>
Date:   Sat Jan 29 16:56:30 2022 -0800

    mode: New order statistic.

commit b9f712f8911170fcc049c6d7d83b6887185de4dd
Author: Ben Pfaff <blp@cs.stanford.edu>
Date:   Sat Jan 29 16:56:18 2022 -0800

    math: Make 'accumulate' a feature of order statistics, not all stats.

commit 2a76184b55a8c229adc0b31d3436d29076de0ef8
Author: Ben Pfaff <blp@cs.stanford.edu>
Date:   Sat Jan 29 12:21:13 2022 -0800

    subcase: Rename subcase_destroy() to subcase_uninit().
    
    This reflects the convention that "destroy" frees the pointer passed in
    while "uninit" only frees the internals.

commit 71f9b6d6c14525cd41ba77c9fd50aa13d0da830c
Author: Ben Pfaff <blp@cs.stanford.edu>
Date:   Sat Jan 29 12:01:16 2022 -0800

    math: Coding style updates in some order-stat implementations.
    
    I generally find structure assignments clearer than individual assignments
    to each of their members these days.

commit feb269112e14589474c0a75e96cd5a892d9aaeef
Author: Ben Pfaff <blp@cs.stanford.edu>
Date:   Sat Jan 29 12:00:16 2022 -0800

    math: Improve comments.
    
    This includes some changes to parameter names and coding style in
    order-stats that I think clarify the code and modernize it.

commit 922dfe227e0a157f895c025b8f8590e2bfc59f23
Author: Ben Pfaff <blp@cs.stanford.edu>
Date:   Sat Jan 29 10:52:49 2022 -0800

    math: Avoid unneeded extra allocations for fixed-size data structures.
    
    This seems generally a bit cleaner to me.

commit 947e6378c28a6a33a2cd9ef4c4d90e001bdcc359
Author: Ben Pfaff <blp@cs.stanford.edu>
Date:   Mon Jan 17 19:19:27 2022 -0800

    spv-legacy-decoder: Always give the pivot table a title.
    
    A pivot table must have a title.  Some parts of PSPP rely on that.  The
    legacy SPV decoder didn't ensure this, and one SPV in my corpus didn't have
    one, which led to null pointer dereferences, so this commit fixes the
    problem.

commit db9910816100d5c8dce9734e441efdcbf9e5b71a
Author: Ben Pfaff <blp@cs.stanford.edu>
Date:   Mon Jan 17 17:39:37 2022 -0800

    output-item: Add missing new-line printing tables in output_item_dump().
    
    This only affects "pspp-output dump".

commit 2fb9c1884efce402836c82d09bbece4eee74e068
Author: Ben Pfaff <blp@cs.stanford.edu>
Date:   Sat Jan 1 13:31:39 2022 -0800

    output-item: Fix memory leak in output_item_dump().

-----------------------------------------------------------------------

Summary of changes:
 src/data/case-matcher.c              |   2 +-
 src/data/casegrouper.c               |   2 +-
 src/data/casereader-project.c        |   6 +-
 src/data/subcase.c                   |   2 +-
 src/data/subcase.h                   |   2 +-
 src/language/data-io/combine-files.c |   8 +-
 src/language/data-io/list.c          |   2 +-
 src/language/lexer/lexer.c           |  68 ++++++++++------
 src/language/lexer/lexer.h           |   1 +
 src/language/stats/aggregate.c       |   4 +-
 src/language/stats/examine.c         |   2 +-
 src/language/stats/graph.c           |   4 +-
 src/language/stats/matrix.c          |  19 +----
 src/language/stats/median.c          |   2 +-
 src/language/stats/rank.c            |  14 ++--
 src/language/stats/roc.c             |   6 +-
 src/language/stats/runs.c            |   2 +-
 src/language/stats/sort-cases.c      |   2 +-
 src/language/stats/wilcoxon.c        |   2 +-
 src/language/utilities/title.c       |  20 ++---
 src/math/automake.mk                 |   1 +
 src/math/box-whisker.c               |  38 +++++----
 src/math/histogram.c                 |  12 +--
 src/math/merge.c                     |   2 +-
 src/math/mode.c                      |  66 ++++++++++++++++
 src/math/mode.h                      |  46 +++++++++++
 src/math/np.c                        |  60 ++++++++-------
 src/math/np.h                        |   5 +-
 src/math/order-stats.c               | 145 ++++++++++++++++++-----------------
 src/math/order-stats.h               |  92 +++++++++++++++-------
 src/math/percentiles.c               |  46 ++++++-----
 src/math/percentiles.h               |  24 +++---
 src/math/shapiro-wilk.c              |   2 +-
 src/math/sort.c                      |   9 ++-
 src/math/sort.h                      |  15 ++++
 src/math/statistic.h                 |   1 -
 src/math/trimmed-mean.c              |  36 ++++-----
 src/math/trimmed-mean.h              |   2 +
 src/math/tukey-hinges.c              |   7 +-
 src/math/tukey-hinges.h              |   1 +
 src/output/output-item.c             |  10 ++-
 src/output/spv/spv-legacy-decoder.c  |   3 +-
 42 files changed, 485 insertions(+), 308 deletions(-)
 create mode 100644 src/math/mode.c
 create mode 100644 src/math/mode.h


hooks/post-receive
-- 
GNU PSPP



reply via email to

[Prev in Thread] Current Thread [Next in Thread]