lmi-commits
[Top][All Lists]
Advanced

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

[lmi-commits] [lmi] master updated (efc0881 -> 1be41b7)


From: Greg Chicares
Subject: [lmi-commits] [lmi] master updated (efc0881 -> 1be41b7)
Date: Fri, 19 Mar 2021 17:54:39 -0400 (EDT)

chicares pushed a change to branch master.

      from  efc0881   Throw on length error in PETE vector assignment
       new  0f29420   Import PETE examples and html documentation
       new  780cd0a   Remove a dependency that had become problematic
       new  055c610   Document weirdness
       new  29592bf   Add a script; rename a unit test
       new  0eae748   Nychthemerally test PETE rebuild
       new  1be41b7   Rename a unit test


Summary of changes:
 Makefile.am                                        |    8 +-
 et_vector_0_test.cpp => et_vector_test.cpp         |    0
 nychthemeral_test.sh                               |   11 +
 objects.make                                       |    6 +-
 tools/pete-2.1.1/Makefile                          |    8 +-
 tools/pete-2.1.1/et_vector.hpp                     |    7 +
 tools/pete-2.1.1/examples/DDJ/Listing1.cpp         |   87 +
 tools/pete-2.1.1/examples/DDJ/Listing1Defs.in      |    6 +
 .../DDJ/Listing1Operators.h}                       | 1877 +++----
 tools/pete-2.1.1/examples/DDJ/Listing2.cpp         |  122 +
 tools/pete-2.1.1/examples/DDJ/Listing2Defs.in      |    7 +
 tools/pete-2.1.1/examples/DDJ/Listing2Operators.h  | 5620 ++++++++++++++++++++
 tools/pete-2.1.1/examples/DDJ/Listing3.cpp         |  149 +
 tools/pete-2.1.1/examples/DDJ/Listing4.cpp         |  187 +
 tools/pete-2.1.1/examples/DDJ/Makefile.user        |   74 +
 tools/pete-2.1.1/examples/DDJ/README               |   38 +
 tools/pete-2.1.1/examples/DDJ/makefile             |   74 +
 tools/pete-2.1.1/examples/Mixed/Eval.h             |  140 +
 tools/pete-2.1.1/examples/Mixed/Makefile.user      |   61 +
 tools/pete-2.1.1/examples/Mixed/Mixed.cpp          |   95 +
 tools/pete-2.1.1/examples/Mixed/MixedDefs.in       |    8 +
 tools/pete-2.1.1/examples/Mixed/MixedOperators.h   | 5620 ++++++++++++++++++++
 tools/pete-2.1.1/examples/Mixed/README             |    9 +
 tools/pete-2.1.1/examples/Mixed/makefile           |   60 +
 tools/pete-2.1.1/examples/RGB/README               |   17 +
 tools/pete-2.1.1/examples/RGB/RGB.cpp              |   43 +
 tools/pete-2.1.1/examples/RGB/RGB.h                |  180 +
 .../{et_vector.in => examples/RGB/RGBDefs.in}      |    3 +-
 .../RGB/RGBOperators.h}                            | 1664 +++---
 tools/pete-2.1.1/examples/RGB/makefile             |   60 +
 tools/pete-2.1.1/examples/TArray/ForEachInOrder.h  |  274 +
 tools/pete-2.1.1/examples/TArray/README            |   19 +
 tools/pete-2.1.1/examples/TArray/TArray.cpp        |   64 +
 tools/pete-2.1.1/examples/TArray/TArray.h          |  394 ++
 tools/pete-2.1.1/examples/TArray/TArrayDefs.in     |    4 +
 .../TArray/TArrayOperators.h}                      | 1961 +++----
 tools/pete-2.1.1/examples/TArray/makefile          |   58 +
 tools/pete-2.1.1/examples/Vec3/README              |   15 +
 tools/pete-2.1.1/examples/Vec3/Vec3.cpp            |   72 +
 tools/pete-2.1.1/examples/Vec3/Vec3.h              |  214 +
 tools/pete-2.1.1/examples/Vec3/Vec3Defs.in         |    4 +
 .../Vec3/Vec3Operators.h}                          | 1961 +++----
 tools/pete-2.1.1/examples/Vec3/makefile            |   60 +
 tools/pete-2.1.1/examples/Vector/Eval.h            |  165 +
 tools/pete-2.1.1/examples/Vector/Makefile.user     |   62 +
 tools/pete-2.1.1/examples/Vector/README            |   39 +
 tools/pete-2.1.1/examples/Vector/Vector.cpp        |   69 +
 .../Vector/VectorDefs.in}                          |    2 +-
 .../Vector/VectorOperators.h}                      | 1589 +++---
 tools/pete-2.1.1/examples/Vector/makefile          |   60 +
 tools/pete-2.1.1/examples/makefile                 |   72 +
 tools/pete-2.1.1/html/PETETutorials.pdf            | 2163 ++++++++
 .../{PETE/Tools/PeteOps.in => html/PeteOps.html}   |  166 +-
 tools/pete-2.1.1/html/background.html              |  779 +++
 tools/pete-2.1.1/html/banner.gif                   |  Bin 0 -> 5357 bytes
 tools/pete-2.1.1/html/builtin.html                 |   66 +
 tools/pete-2.1.1/html/index.html                   |   49 +
 tools/pete-2.1.1/html/introduction.html            |   80 +
 tools/pete-2.1.1/html/legal.html                   |   54 +
 tools/pete-2.1.1/html/makeoperators.html           |  450 ++
 tools/pete-2.1.1/html/stl.html                     |   97 +
 tools/pete-2.1.1/html/tree.gif                     |  Bin 0 -> 2163 bytes
 tools/pete-2.1.1/html/tut-1.html                   |  732 +++
 tools/pete-2.1.1/html/tut-2.html                   |  406 ++
 tools/pete-2.1.1/html/tut-3.html                   |  766 +++
 .../{et_vector_test.cpp => pete_vector_test.cpp}   |   76 +-
 .../pete-2.1.1/rebuild_pete.sh                     |   22 +-
 67 files changed, 24147 insertions(+), 5158 deletions(-)
 rename et_vector_0_test.cpp => et_vector_test.cpp (100%)
 create mode 100644 tools/pete-2.1.1/examples/DDJ/Listing1.cpp
 create mode 100644 tools/pete-2.1.1/examples/DDJ/Listing1Defs.in
 copy tools/pete-2.1.1/{et_vector_operators.hpp => 
examples/DDJ/Listing1Operators.h} (60%)
 create mode 100644 tools/pete-2.1.1/examples/DDJ/Listing2.cpp
 create mode 100644 tools/pete-2.1.1/examples/DDJ/Listing2Defs.in
 create mode 100644 tools/pete-2.1.1/examples/DDJ/Listing2Operators.h
 create mode 100644 tools/pete-2.1.1/examples/DDJ/Listing3.cpp
 create mode 100644 tools/pete-2.1.1/examples/DDJ/Listing4.cpp
 create mode 100644 tools/pete-2.1.1/examples/DDJ/Makefile.user
 create mode 100644 tools/pete-2.1.1/examples/DDJ/README
 create mode 100644 tools/pete-2.1.1/examples/DDJ/makefile
 create mode 100644 tools/pete-2.1.1/examples/Mixed/Eval.h
 create mode 100644 tools/pete-2.1.1/examples/Mixed/Makefile.user
 create mode 100644 tools/pete-2.1.1/examples/Mixed/Mixed.cpp
 create mode 100644 tools/pete-2.1.1/examples/Mixed/MixedDefs.in
 create mode 100644 tools/pete-2.1.1/examples/Mixed/MixedOperators.h
 create mode 100644 tools/pete-2.1.1/examples/Mixed/README
 create mode 100644 tools/pete-2.1.1/examples/Mixed/makefile
 create mode 100644 tools/pete-2.1.1/examples/RGB/README
 create mode 100644 tools/pete-2.1.1/examples/RGB/RGB.cpp
 create mode 100644 tools/pete-2.1.1/examples/RGB/RGB.h
 copy tools/pete-2.1.1/{et_vector.in => examples/RGB/RGBDefs.in} (55%)
 copy tools/pete-2.1.1/{et_vector_operators.hpp => examples/RGB/RGBOperators.h} 
(63%)
 create mode 100644 tools/pete-2.1.1/examples/RGB/makefile
 create mode 100644 tools/pete-2.1.1/examples/TArray/ForEachInOrder.h
 create mode 100644 tools/pete-2.1.1/examples/TArray/README
 create mode 100644 tools/pete-2.1.1/examples/TArray/TArray.cpp
 create mode 100644 tools/pete-2.1.1/examples/TArray/TArray.h
 create mode 100644 tools/pete-2.1.1/examples/TArray/TArrayDefs.in
 copy tools/pete-2.1.1/{et_vector_operators.hpp => 
examples/TArray/TArrayOperators.h} (59%)
 create mode 100644 tools/pete-2.1.1/examples/TArray/makefile
 create mode 100644 tools/pete-2.1.1/examples/Vec3/README
 create mode 100644 tools/pete-2.1.1/examples/Vec3/Vec3.cpp
 create mode 100644 tools/pete-2.1.1/examples/Vec3/Vec3.h
 create mode 100644 tools/pete-2.1.1/examples/Vec3/Vec3Defs.in
 copy tools/pete-2.1.1/{et_vector_operators.hpp => 
examples/Vec3/Vec3Operators.h} (59%)
 create mode 100644 tools/pete-2.1.1/examples/Vec3/makefile
 create mode 100644 tools/pete-2.1.1/examples/Vector/Eval.h
 create mode 100644 tools/pete-2.1.1/examples/Vector/Makefile.user
 create mode 100644 tools/pete-2.1.1/examples/Vector/README
 create mode 100644 tools/pete-2.1.1/examples/Vector/Vector.cpp
 copy tools/pete-2.1.1/{et_vector.in => examples/Vector/VectorDefs.in} (55%)
 copy tools/pete-2.1.1/{et_vector_operators.hpp => 
examples/Vector/VectorOperators.h} (65%)
 create mode 100644 tools/pete-2.1.1/examples/Vector/makefile
 create mode 100644 tools/pete-2.1.1/examples/makefile
 create mode 100644 tools/pete-2.1.1/html/PETETutorials.pdf
 copy tools/pete-2.1.1/{PETE/Tools/PeteOps.in => html/PeteOps.html} (50%)
 create mode 100644 tools/pete-2.1.1/html/background.html
 create mode 100644 tools/pete-2.1.1/html/banner.gif
 create mode 100644 tools/pete-2.1.1/html/builtin.html
 create mode 100644 tools/pete-2.1.1/html/index.html
 create mode 100644 tools/pete-2.1.1/html/introduction.html
 create mode 100644 tools/pete-2.1.1/html/legal.html
 create mode 100644 tools/pete-2.1.1/html/makeoperators.html
 create mode 100644 tools/pete-2.1.1/html/stl.html
 create mode 100644 tools/pete-2.1.1/html/tree.gif
 create mode 100644 tools/pete-2.1.1/html/tut-1.html
 create mode 100644 tools/pete-2.1.1/html/tut-2.html
 create mode 100644 tools/pete-2.1.1/html/tut-3.html
 rename tools/pete-2.1.1/{et_vector_test.cpp => pete_vector_test.cpp} (58%)
 copy single_cell_document.rnc => tools/pete-2.1.1/rebuild_pete.sh (67%)
 mode change 100644 => 100755



reply via email to

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