gnuastro-commits
[Top][All Lists]
Advanced

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

[gnuastro-commits] master updated (589ca52 -> 0487ba5)


From: Mohammad Akhlaghi
Subject: [gnuastro-commits] master updated (589ca52 -> 0487ba5)
Date: Sun, 17 Dec 2017 11:31:16 -0500 (EST)

makhlaghi pushed a change to branch master.

      from  589ca52   Arithmetic library's flag argument converted to int type
       new  f0a4d1e   In configure, current directory removed from PATH
       new  e9842b5   Webpage translations now fully incorporated
       new  c46e36d   Minor corrections in webpage script
       new  c448b38   Better explanation on GNU Libtool in book
       new  0bbdf6d   Minor corrections to optional dependencies
       new  104b657   Configuration warning if PATH includes current directory
       new  c6a96b2   In citation, primarily was changed to initially
       new  74dd74f   Match program's man page is built
       new  eef4e80   Arithmetic's binary operators don't need compiled types
       new  2631def   Minor edits in book's configuration options and intro
       new  182f397   No -pthread flag in LDFLAGS
       new  d7a7c37   Minor edits in book, acknowledgements updated
       new  481b53a   -Qunused-arguments now dealt with in CXXFLAGS
       new  0487ba5   Initializing delta and dist arrays in match library


Summary of changes:
 NEWS                                               |   6 +
 THANKS                                             |  11 +
 configure.ac                                       | 302 +++----
 doc/Makefile.am                                    |  15 +-
 doc/announce-acknowledge.txt                       |   4 +
 doc/forwebpage                                     |  18 +-
 doc/{gnuastro-top.html => gnuastro.en.html}        | 144 ++--
 doc/gnuastro.fr.html                               | 670 +++++++--------
 doc/gnuastro.texi                                  | 277 +++----
 doc/gnuastro.translist                             |  12 +
 doc/release-checklist.txt                          |   6 +-
 lib/Makefile.am                                    |  45 +-
 bin/table/table.c => lib/arithmetic-and.c          |  32 +-
 lib/arithmetic-binary.c                            | 491 -----------
 lib/arithmetic-bitand.c                            |  58 ++
 lib/arithmetic-bitlsh.c                            |  58 ++
 lib/arithmetic-bitor.c                             |  58 ++
 lib/arithmetic-bitrsh.c                            |  58 ++
 lib/arithmetic-bitxor.c                            |  58 ++
 bin/table/table.c => lib/arithmetic-divide.c       |  34 +-
 bin/table/table.c => lib/arithmetic-eq.c           |  32 +-
 bin/table/table.c => lib/arithmetic-ge.c           |  32 +-
 .../arithmetic-onlyint.h => arithmetic-gt.c}       |  34 +-
 bin/table/table.c => lib/arithmetic-le.c           |  32 +-
 bin/table/table.c => lib/arithmetic-lt.c           |  32 +-
 bin/table/table.c => lib/arithmetic-minus.c        |  34 +-
 lib/arithmetic-modulo.c                            |  58 ++
 bin/table/table.c => lib/arithmetic-multiply.c     |  34 +-
 bin/table/table.c => lib/arithmetic-ne.c           |  32 +-
 lib/arithmetic-onlyint.c                           | 492 -----------
 bin/table/table.c => lib/arithmetic-or.c           |  32 +-
 bin/table/table.c => lib/arithmetic-plus.c         |  34 +-
 lib/arithmetic.c                                   | 899 ++++++++++-----------
 .../{arithmetic-binary.h => arithmetic-and.h}      |  10 +-
 lib/gnuastro-internal/arithmetic-binary.h          | 250 +++++-
 .../{arithmetic-binary.h => arithmetic-bitand.h}   |  10 +-
 .../{arithmetic-binary.h => arithmetic-bitlsh.h}   |  10 +-
 .../{arithmetic-binary.h => arithmetic-bitor.h}    |  10 +-
 .../{arithmetic-binary.h => arithmetic-bitrsh.h}   |  10 +-
 .../{arithmetic-binary.h => arithmetic-bitxor.h}   |  10 +-
 .../{arithmetic-binary.h => arithmetic-divide.h}   |  10 +-
 .../{arithmetic-binary.h => arithmetic-eq.h}       |  10 +-
 .../{arithmetic-binary.h => arithmetic-ge.h}       |  10 +-
 .../{arithmetic-binary.h => arithmetic-gt.h}       |  10 +-
 lib/gnuastro-internal/arithmetic-internal.h        |   2 +-
 .../{arithmetic-binary.h => arithmetic-le.h}       |  10 +-
 .../{arithmetic-binary.h => arithmetic-lt.h}       |  10 +-
 .../{arithmetic-binary.h => arithmetic-minus.h}    |  10 +-
 .../{arithmetic-binary.h => arithmetic-modulo.h}   |  10 +-
 .../{arithmetic-binary.h => arithmetic-multiply.h} |  10 +-
 .../{arithmetic-binary.h => arithmetic-ne.h}       |  10 +-
 .../{arithmetic-binary.h => arithmetic-or.h}       |  10 +-
 .../{arithmetic-binary.h => arithmetic-plus.h}     |  10 +-
 lib/match.c                                        |   4 +-
 lib/options.c                                      |   2 +-
 tests/Makefile.am                                  |  10 +-
 tests/lib/{versioncpp.cpp => versioncxx.cpp}       |   0
 tests/lib/{versioncpp.sh => versioncxx.sh}         |   2 +-
 58 files changed, 1952 insertions(+), 2632 deletions(-)
 rename doc/{gnuastro-top.html => gnuastro.en.html} (73%)
 create mode 100644 doc/gnuastro.translist
 copy bin/table/table.c => lib/arithmetic-and.c (54%)
 delete mode 100644 lib/arithmetic-binary.c
 create mode 100644 lib/arithmetic-bitand.c
 create mode 100644 lib/arithmetic-bitlsh.c
 create mode 100644 lib/arithmetic-bitor.c
 create mode 100644 lib/arithmetic-bitrsh.c
 create mode 100644 lib/arithmetic-bitxor.c
 copy bin/table/table.c => lib/arithmetic-divide.c (51%)
 copy bin/table/table.c => lib/arithmetic-eq.c (54%)
 copy bin/table/table.c => lib/arithmetic-ge.c (54%)
 rename lib/{gnuastro-internal/arithmetic-onlyint.h => arithmetic-gt.c} (50%)
 copy bin/table/table.c => lib/arithmetic-le.c (54%)
 copy bin/table/table.c => lib/arithmetic-lt.c (54%)
 copy bin/table/table.c => lib/arithmetic-minus.c (51%)
 create mode 100644 lib/arithmetic-modulo.c
 copy bin/table/table.c => lib/arithmetic-multiply.c (51%)
 copy bin/table/table.c => lib/arithmetic-ne.c (54%)
 delete mode 100644 lib/arithmetic-onlyint.c
 copy bin/table/table.c => lib/arithmetic-or.c (54%)
 copy bin/table/table.c => lib/arithmetic-plus.c (51%)
 copy lib/gnuastro-internal/{arithmetic-binary.h => arithmetic-and.h} (86%)
 copy lib/gnuastro-internal/{arithmetic-binary.h => arithmetic-bitand.h} (86%)
 copy lib/gnuastro-internal/{arithmetic-binary.h => arithmetic-bitlsh.h} (86%)
 copy lib/gnuastro-internal/{arithmetic-binary.h => arithmetic-bitor.h} (86%)
 copy lib/gnuastro-internal/{arithmetic-binary.h => arithmetic-bitrsh.h} (86%)
 copy lib/gnuastro-internal/{arithmetic-binary.h => arithmetic-bitxor.h} (86%)
 copy lib/gnuastro-internal/{arithmetic-binary.h => arithmetic-divide.h} (86%)
 copy lib/gnuastro-internal/{arithmetic-binary.h => arithmetic-eq.h} (86%)
 copy lib/gnuastro-internal/{arithmetic-binary.h => arithmetic-ge.h} (86%)
 copy lib/gnuastro-internal/{arithmetic-binary.h => arithmetic-gt.h} (86%)
 copy lib/gnuastro-internal/{arithmetic-binary.h => arithmetic-le.h} (86%)
 copy lib/gnuastro-internal/{arithmetic-binary.h => arithmetic-lt.h} (86%)
 copy lib/gnuastro-internal/{arithmetic-binary.h => arithmetic-minus.h} (86%)
 copy lib/gnuastro-internal/{arithmetic-binary.h => arithmetic-modulo.h} (86%)
 copy lib/gnuastro-internal/{arithmetic-binary.h => arithmetic-multiply.h} (86%)
 copy lib/gnuastro-internal/{arithmetic-binary.h => arithmetic-ne.h} (86%)
 copy lib/gnuastro-internal/{arithmetic-binary.h => arithmetic-or.h} (86%)
 copy lib/gnuastro-internal/{arithmetic-binary.h => arithmetic-plus.h} (86%)
 rename tests/lib/{versioncpp.cpp => versioncxx.cpp} (100%)
 rename tests/lib/{versioncpp.sh => versioncxx.sh} (97%)



reply via email to

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