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.2.0-34-ge3fd4b


From: Ben Pfaff
Subject: [Pspp-commits] [SCM] GNU PSPP branch, master, updated. v1.2.0-34-ge3fd4bd
Date: Sun, 23 Dec 2018 14:09:34 -0500 (EST)

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  e3fd4bdef26f6d5442dfce636965e721c7a6e349 (commit)
       via  6590347b1a0ed5037743f671ab846813c89f9112 (commit)
       via  f0168bf82cd65cb3af7f0816dc64af06dc17636d (commit)
       via  5f3cd72e75cfe4ded7c2ca3b2cd0936412ba71ab (commit)
       via  d5cc4822420e8f5e3aee78df195fb150be4252b9 (commit)
       via  f23013d812e3d9dab3e6e2f0b4f89b2603532732 (commit)
       via  cd478adaaf7d0f29d4426d23b815c3aa3559f38a (commit)
       via  e94c7d5a9d2e971e0e3eca623f6bf281d903c24c (commit)
       via  d601c81ebb655534791a25cc989bf29977796c18 (commit)
       via  259b5c32c06fd93964720f4a0e7844b5a24c55db (commit)
       via  77fdb545bd614eaf71a934485fca8e5627cf0324 (commit)
       via  2e40fba218250a31e244007b15c1fc4b637145d4 (commit)
       via  12c7324445fc5fd00d0536172373ddd8b253d0e2 (commit)
      from  a8799bb1d22a001fe846733bc127b203e3c5894a (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 e3fd4bdef26f6d5442dfce636965e721c7a6e349
Author: Ben Pfaff <address@hidden>
Date:   Sun Dec 23 11:06:34 2018 -0800

    categoricals: Convert tabs to spaces.

commit 6590347b1a0ed5037743f671ab846813c89f9112
Author: Ben Pfaff <address@hidden>
Date:   Sun Dec 23 11:06:17 2018 -0800

    categoricals: Update style and modernize.

commit f0168bf82cd65cb3af7f0816dc64af06dc17636d
Author: Ben Pfaff <address@hidden>
Date:   Sun Dec 23 11:03:40 2018 -0800

    categoricals: Get rid of 'df_prod' array.
    
    It brought minimal value in that everything it did could be recalculated
    on the fly without increasing the big-O cost.

commit 5f3cd72e75cfe4ded7c2ca3b2cd0936412ba71ab
Author: Ben Pfaff <address@hidden>
Date:   Sun Dec 23 10:57:50 2018 -0800

    categoricals: Drop 'n_vals' member from struct variable_node.
    
    It was redundant with counting the elements in valmap, which wasn't
    used many places anyway.

commit d5cc4822420e8f5e3aee78df195fb150be4252b9
Author: Ben Pfaff <address@hidden>
Date:   Sun Dec 23 10:50:44 2018 -0800

    categoricals: Add array of variable_nodes to reduce hash lookups.

commit f23013d812e3d9dab3e6e2f0b4f89b2603532732
Author: Ben Pfaff <address@hidden>
Date:   Sun Dec 23 10:42:04 2018 -0800

    categoricals: Avoid setting value_node indexes multiple times.
    
    A given variable_node can be in more than one interaction, but it's only
    necessary to set the variable_node's value_node indexes once each.

commit cd478adaaf7d0f29d4426d23b815c3aa3559f38a
Author: Ben Pfaff <address@hidden>
Date:   Sun Dec 23 10:27:14 2018 -0800

    categoricals: Give "reverse" members more descriptive, shorter names.

commit e94c7d5a9d2e971e0e3eca623f6bf281d903c24c
Author: Ben Pfaff <address@hidden>
Date:   Sun Dec 23 10:15:39 2018 -0800

    categoricals: Remove unused function categoricals_get_n_variables().
    
    This function output debugging info on stdout, so clearly it wasn't
    important.

commit d601c81ebb655534791a25cc989bf29977796c18
Author: Ben Pfaff <address@hidden>
Date:   Sun Dec 23 10:14:28 2018 -0800

    categoricals: Don't warn on hash collisions.
    
    Hash collisions are not errors.

commit 259b5c32c06fd93964720f4a0e7844b5a24c55db
Author: Ben Pfaff <address@hidden>
Date:   Sun Dec 23 09:20:34 2018 -0800

    categoricals: Improve comments.

commit 77fdb545bd614eaf71a934485fca8e5627cf0324
Author: Ben Pfaff <address@hidden>
Date:   Sun Dec 23 09:07:08 2018 -0800

    categoricals: Remove 'dep_excl' parameter.
    
    It was not used for anything.

commit 2e40fba218250a31e244007b15c1fc4b637145d4
Author: Ben Pfaff <address@hidden>
Date:   Sun Dec 23 10:54:01 2018 -0800

    tests: Add "categorical" keyword to tests that use categoricals.
    
    This makes it easier to run tests just for these.

commit 12c7324445fc5fd00d0536172373ddd8b253d0e2
Author: Ben Pfaff <address@hidden>
Date:   Sat Dec 22 18:48:17 2018 -0800

    interaction: Better document and update code to modern style.

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

Summary of changes:
 src/language/stats/examine.c     |   3 +-
 src/language/stats/glm.c         |   2 +-
 src/language/stats/logistic.c    |   2 +-
 src/language/stats/means.c       |   2 +-
 src/language/stats/oneway.c      |   2 +-
 src/math/categoricals.c          | 868 ++++++++++++++++-----------------------
 src/math/categoricals.h          | 182 ++++----
 src/math/interaction.c           | 232 +++++------
 src/math/interaction.h           |  51 ++-
 tests/language/stats/examine.at  |  23 +-
 tests/language/stats/glm.at      |   5 +
 tests/language/stats/logistic.at |  10 +
 tests/language/stats/means.at    |  11 +
 tests/language/stats/oneway.at   |  18 +
 14 files changed, 671 insertions(+), 740 deletions(-)


hooks/post-receive
-- 
GNU PSPP



reply via email to

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