diff --git a/CHANGELOG.md b/CHANGELOG.md index 6054f4b5538ef083d2469f90d4b16cceb9aa015b..1ce67851bb4d97f29905e59cbde89467d8cbe588 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,10 @@ Notable changes to Conduit are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), -and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +and this project aspires to adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] + +## [0.4.0] - Released 2019-03-01 ### Added - Added Generic IO Handle class (relay::io::IOHandle) with C++ and Python APIs, tests, and docs. @@ -17,24 +18,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added C bindings for relay IO - Added several more functions to conduit node python interfaces + - Blueprint: Added implicit point topology docs and example - Blueprint: Added julia and spiral mesh bp examples - Blueprint: Added mesh topology transformations to blueprint - Blueprint: Added polygonal mesh support to mesh blueprint - Blueprint: Added verify method for mesh blueprint nestset -- Relay: Added ADIOS Support + +- Relay: Added ADIOS Support, enabling ADIOS read and write of Node objects. +- Relay: Added a relay::mpi::io library that mirrors the API of relay::io, except that all functions take an MPI communicator. The functions are implemented in parallel for the ADIOS protocol. For other protocols, they will behave the same as the serial functions in relay::io. For the ADIOS protocol, the save() and save_merged() functions operate collectively within a communicator to enable multiple MPI ranks to save data to a single file as separate "domains". +- Relay: Added an add_time_step() function to that lets the caller append data collectively to an existing ADIOS file +- Relay: Added a function to query the number of time steps and the number of domains in a ADIOS file. - Relay: Added versions of save and save_merged that take an options node. - Relay: Added C API for new save, save_merged functions. - Relay: Added method to list an HDF5 group's child names - Relay: Added save and append methods to the HDF5 I/O interface - Relay: Added docs and examples for relay io + ### Changed - Changed mapping of c types to bit-width style to be compatible with C++11 std bit-width types when C++11 is enabled - Several improvements to uberenv, our automated build process, and building directions - Upgraded the type system with more explicit signed support + - Relay: Improvements to the Silo mesh writer - Relay: Refactor to support both relay::io and relay::mpi::io namespaces. - Relay: Refactor to add support for steps and domains to I/O interfaces @@ -47,9 +55,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed issue with Node::diff failing for string data with offsets - Fixes for building on BlueOS with the xl compiler + - Blueprint: Fixed validity status for blueprint functions - Blueprint: Fixed improper error reporting for Blueprint references + - Relay: Relay I/O exceptions are now forwarded to python - Relay: Fixed MPI send_with_schema bug when data was compact but not contiguous - Relay: Switched to use MPI bit-width style data type enums in ``relay::mpi`` @@ -61,6 +71,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Expanded the Node Python Capsule API - Added Python version of basic tutorial + - Blueprint: Added Multi-level Array Protocol (conduit::blueprint::mlarray) @@ -72,6 +83,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Various Python API bug fixes - Fixed API exports for static libs on Windows + - Relay: Bug fixes for HDF5 support on Windows ### Removed @@ -82,9 +94,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Exposed more of the Conduit API in Python + - Blueprint: Added support for multi-material fields via *matsets* (volume fractions and per-material values) - Blueprint: Added initial support for domain boundary info via *adjsets* for distributed-memory unstructured meshes + - Relay: Added support for MPI reductions and broadcast - Relay: Added support zero-copy pass to MPI for a wide set of calls - Relay: Hardened notion of `known schema` vs `generic` MPI support @@ -94,6 +108,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Moved to use BLT (https://github.com/llnl/blt) as our core CMake-based build system - Use ints instead of bools in the Conduit C-APIs for wider compiler compatibility + - Relay: Improved error checking and error messages for HDF5 I/O support ### Fixed @@ -117,8 +132,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added fixes to support static builds on BGQ using xlc and gcc - Fixed missing install of fortran module files + - Blueprint: Fixed bug with verify of mesh/coords for rectilinear case + - Relay: Updated the version of civetweb used to avoid dlopen issues with SSL for static builds ## [0.2.0] - Released 2016-11-03 @@ -128,11 +145,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added support for building on Windows - Added more Python, C, and Fortran API support + - Blueprint: Added verify support for the mcarray and mesh protocols - Blueprint: Added functions that create examples instances of mcarrays and meshes - Blueprint: Added memory layout transform helpers for mcarrays - Blueprint: Added a helper that creates a mesh blueprint index from a valid mesh + - Relay: Added entangle, a python script ssh tunneling solution - Relay: Added extensive HDF5 I/O support for reading and writing between HDF5 files and conduit Node trees @@ -141,6 +160,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Improved unit test coverage - Renamed source and header files for clarity and to avoid potential conflicts with other projects + - Relay: Changed I/O protocol string names for clarity - Relay: Refactored the relay::WebServer and the Conduit Node Viewer application @@ -153,7 +173,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial Open Source Release on GitHub -[Unreleased]: https://github.com/llnl/conduit/compare/v0.3.1...HEAD +[Unreleased]: https://github.com/llnl/conduit/compare/v0.4.0...HEAD +[0.4.0]: https://github.com/llnl/conduit/compare/v0.3.1...v0.4.0 [0.3.1]: https://github.com/llnl/conduit/compare/v0.3.0...v0.3.1 [0.3.0]: https://github.com/llnl/conduit/compare/v0.2.1...v0.3.0 [0.2.1]: https://github.com/llnl/conduit/compare/v0.2.0...v0.2.1 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 3e0dec2bec47b9cf80d18998bd724cd2adead757..d013983ae47f59b4da63f16730b42e27845a3b40 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -57,7 +57,7 @@ endif() # Conduit ################################ -project(conduit VERSION "0.3.2") +project(conduit VERSION "0.4.0") ################################ # Build Options diff --git a/src/cmake/BasicTypeChecks.cmake b/src/cmake/BasicTypeChecks.cmake index 4f18b7e328ee3e3f7851143bebee7e2ec26180a1..6fd0c5fa9fdb837b5314f74d75edb962d69c40d4 100644 --- a/src/cmake/BasicTypeChecks.cmake +++ b/src/cmake/BasicTypeChecks.cmake @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/cmake/CMakeBasics.cmake b/src/cmake/CMakeBasics.cmake index 46a41efb18939f9b7f67b0addb9e420e44cf5b29..c727c739a61ae1d0b905b50c3754a62530e5761a 100644 --- a/src/cmake/CMakeBasics.cmake +++ b/src/cmake/CMakeBasics.cmake @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) Copyright (c) 2015-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) Copyright (c) 2015-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/cmake/Setup3rdParty.cmake b/src/cmake/Setup3rdParty.cmake index 3ae495f42b6426e9f6776f7903ca017bd5633b5c..dc3879d60574c5c2456c7a95ebcb93297acaa1e9 100644 --- a/src/cmake/Setup3rdParty.cmake +++ b/src/cmake/Setup3rdParty.cmake @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) Copyright (c) 2015-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) Copyright (c) 2015-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/cmake/SetupFortran.cmake b/src/cmake/SetupFortran.cmake index e6dd7987ba4c1b6cf5a9b36bfc27c5863cd6efed..f3b0848eff7da550d39e9e2b8cce101928a2bf89 100644 --- a/src/cmake/SetupFortran.cmake +++ b/src/cmake/SetupFortran.cmake @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/cmake/SetupIncludes.cmake b/src/cmake/SetupIncludes.cmake index fc17f694bd2c420cbbcd30ec8c48aafa33095695..1059b37cf0b684eb8d1aeac9e300996b9e820688 100644 --- a/src/cmake/SetupIncludes.cmake +++ b/src/cmake/SetupIncludes.cmake @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/cmake/SetupTests.cmake b/src/cmake/SetupTests.cmake index 2a23f6cf985954ad775b4f945c580a3bba9d1b84..08cc32b5069d3297b4f7075b83d474d8eaaebc50 100644 --- a/src/cmake/SetupTests.cmake +++ b/src/cmake/SetupTests.cmake @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) Copyright (c) 2015-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) Copyright (c) 2015-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/cmake/conduit-config.cmake.in b/src/cmake/conduit-config.cmake.in index 9f143774f59b3fe9af0dee06378750e55ba093fa..61f2c9933d643923a2f14d171852c38fc6655562 100644 --- a/src/cmake/conduit-config.cmake.in +++ b/src/cmake/conduit-config.cmake.in @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/cmake/conduit-deps-paths.cmake.in b/src/cmake/conduit-deps-paths.cmake.in index eb825db9ea64a9d5b866ff2c210773993965eb1c..79894549ac06b8e8a6ffb30a3c663049f127df80 100644 --- a/src/cmake/conduit-deps-paths.cmake.in +++ b/src/cmake/conduit-deps-paths.cmake.in @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/cmake/tests/fortran_test_obj_support.f90 b/src/cmake/tests/fortran_test_obj_support.f90 index 747a3c9ac4547dfc67b1e9f2f7236108ebcadcfa..a56cbd936c073b3caf64d7a0d5ccded3c0538907 100644 --- a/src/cmake/tests/fortran_test_obj_support.f90 +++ b/src/cmake/tests/fortran_test_obj_support.f90 @@ -1,5 +1,5 @@ !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*! -!* Copyright (c) Copyright (c) 2015-2018, Lawrence Livermore National Security, LLC. +!* Copyright (c) Copyright (c) 2015-2019, Lawrence Livermore National Security, LLC. !* !* Produced at the Lawrence Livermore National Laboratory !* diff --git a/src/cmake/thirdparty/FindNumPy.cmake b/src/cmake/thirdparty/FindNumPy.cmake index 14e688f888ad0fd1773bc31471fd944a716dc615..d3efde7aa27c16c7a71576212e664948ded88b35 100644 --- a/src/cmake/thirdparty/FindNumPy.cmake +++ b/src/cmake/thirdparty/FindNumPy.cmake @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/cmake/thirdparty/SetupADIOS.cmake b/src/cmake/thirdparty/SetupADIOS.cmake index ea4228555ec91a04d1ffbf395b0ec3ffc33c9907..7ad4101c7d10ee5dc1fe990947ba8e504a922a5e 100644 --- a/src/cmake/thirdparty/SetupADIOS.cmake +++ b/src/cmake/thirdparty/SetupADIOS.cmake @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/cmake/thirdparty/SetupHDF5.cmake b/src/cmake/thirdparty/SetupHDF5.cmake index 94d62692ed59bf4841992fd081875978ba373cbb..891c878276aff1a857e67e7597297e5e2827c882 100644 --- a/src/cmake/thirdparty/SetupHDF5.cmake +++ b/src/cmake/thirdparty/SetupHDF5.cmake @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/cmake/thirdparty/SetupPython.cmake b/src/cmake/thirdparty/SetupPython.cmake index 9347e81d1980db70bf7986709aa2c7505c465b62..8cb91462f12cfa486bc9db618f6c098c94580636 100644 --- a/src/cmake/thirdparty/SetupPython.cmake +++ b/src/cmake/thirdparty/SetupPython.cmake @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/cmake/thirdparty/SetupRapidJSON.cmake b/src/cmake/thirdparty/SetupRapidJSON.cmake index a1d9ae9f01d9e1447c2588076dbcf372c98e08d9..44e0d3fe1f86c0f7af9c2bde003bbf9c5cf3a124 100644 --- a/src/cmake/thirdparty/SetupRapidJSON.cmake +++ b/src/cmake/thirdparty/SetupRapidJSON.cmake @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/cmake/thirdparty/SetupSilo.cmake b/src/cmake/thirdparty/SetupSilo.cmake index af8967b92421ba3e2d4446868ec5f82111cf9ba0..694273e886e65a237a97e80674047bfd5ce31a53 100644 --- a/src/cmake/thirdparty/SetupSilo.cmake +++ b/src/cmake/thirdparty/SetupSilo.cmake @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/cmake/valgrind.supp b/src/cmake/valgrind.supp index 7e42ff5bd4efa52c2afb48f283c024d7d521d322..4f502eb462ce8dccbc662ccf9954e6891014c659 100644 --- a/src/cmake/valgrind.supp +++ b/src/cmake/valgrind.supp @@ -531,5 +531,13 @@ obj:/bin/bash } +{ + MacoOS_LauncherLeak + Memcheck:Leak + fun:calloc + fun:map_images_nolock + ... + fun:libSystem_initializer +} diff --git a/src/config/CMakeLists.txt b/src/config/CMakeLists.txt index 7a04b716a38adb90568dd79c14b885f8f11c7e28..94bd1bf922844b4ee69420f51f0b01f31a4b01c1 100644 --- a/src/config/CMakeLists.txt +++ b/src/config/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2015-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2015-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/config/conduit_config.mk.in b/src/config/conduit_config.mk.in index eeb37db82376792eed92cb95f968643f1226d12e..5fdbec55586aa3a1ab1ac3ee3694f239bf8768e6 100644 --- a/src/config/conduit_config.mk.in +++ b/src/config/conduit_config.mk.in @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2015-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2015-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/docs/doxygen/CMakeLists.txt b/src/docs/doxygen/CMakeLists.txt index c354f37f4cd475f74ab345429ae9e613cd54dd1b..8c262405f83bd0ccdd939ba4c6ad9f6e05c79977 100644 --- a/src/docs/doxygen/CMakeLists.txt +++ b/src/docs/doxygen/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/docs/doxygen/Doxyfile.in b/src/docs/doxygen/Doxyfile.in index 22f77330a825f1493118f30f422bb273daf9e70d..7d7c44b404bff213d8e5f252ddf33775bcaae798 100644 --- a/src/docs/doxygen/Doxyfile.in +++ b/src/docs/doxygen/Doxyfile.in @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/docs/sphinx/CMakeLists.txt b/src/docs/sphinx/CMakeLists.txt index cf9d2b362481f091cd8042786b07fb500e97c052..94271f81a53f3e4ebeb67d9a92119dced83ced34 100644 --- a/src/docs/sphinx/CMakeLists.txt +++ b/src/docs/sphinx/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/docs/sphinx/blueprint.rst b/src/docs/sphinx/blueprint.rst index 6b41c9e4a73bfd92cbcdcebab895b0fe31a49c69..e419a0ad3fb23175ff4c57511b98a1bbf3fb09c6 100644 --- a/src/docs/sphinx/blueprint.rst +++ b/src/docs/sphinx/blueprint.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/blueprint_mcarray.rst b/src/docs/sphinx/blueprint_mcarray.rst index 665c696edec56552f6de4530ec2cb05e143fe442..a1e0d2d20bd429e91ba72a85a3005f4e858584b4 100644 --- a/src/docs/sphinx/blueprint_mcarray.rst +++ b/src/docs/sphinx/blueprint_mcarray.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/blueprint_mesh.rst b/src/docs/sphinx/blueprint_mesh.rst index b9147a3e429a02c38104fab987f52ac475b8bccb..cd2b033495f26170177dceab85ab2242c5d68360 100644 --- a/src/docs/sphinx/blueprint_mesh.rst +++ b/src/docs/sphinx/blueprint_mesh.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/conduit.rst b/src/docs/sphinx/conduit.rst index 199cc6652fe4ae6983395fc21f4f58090085f45e..d8e4bffa9149eab3f890a2bffa0d14b154aeca1a 100644 --- a/src/docs/sphinx/conduit.rst +++ b/src/docs/sphinx/conduit.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/conduit_cpp_api.rst b/src/docs/sphinx/conduit_cpp_api.rst index 37ce5d0eb26dd80f62d0b89cfbd3d6ebf156da36..128f08329f3b9dbd4e184387ccf85f968ec2d72f 100644 --- a/src/docs/sphinx/conduit_cpp_api.rst +++ b/src/docs/sphinx/conduit_cpp_api.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/conf.py b/src/docs/sphinx/conf.py index 4f6b52e6575867d4c39afc3e6458154469c5c4d0..3b6a8c10f47689e7be23f36254fde4c50dd8af46 100644 --- a/src/docs/sphinx/conf.py +++ b/src/docs/sphinx/conf.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ############################################################################### -# Copyright (c) Copyright (c) 2015-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) Copyright (c) 2015-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # @@ -101,16 +101,16 @@ master_doc = 'index' # General information about the project. project = u'Conduit' -copyright = u'Copyright (c) 2015-2018, LLNS' +copyright = u'Copyright (c) 2015-2019, LLNS' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = '0.4.0-pre' +version = '0.4.0' # The full version, including alpha/beta/rc tags. -release = '0.4.0-pre' +release = '0.4.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/src/docs/sphinx/developer.rst b/src/docs/sphinx/developer.rst index 7ad0178c2eeb314b8ac7822c280bc84eb1a4f505..073c2b9c7a872ea0c337caa2824d46c39d9fb383 100644 --- a/src/docs/sphinx/developer.rst +++ b/src/docs/sphinx/developer.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/glossary.rst b/src/docs/sphinx/glossary.rst index c96e14a76ad76d56e713d4ff284501244c8c18ec..aa2ff9735de52002634693eaa452921180750860 100644 --- a/src/docs/sphinx/glossary.rst +++ b/src/docs/sphinx/glossary.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/index.rst b/src/docs/sphinx/index.rst index f3ddb0ccd14cf5dbf7abfc85d64a5bbcfdb8d71e..0a5c75889a83a3fe9d4520514748672afd347cb5 100644 --- a/src/docs/sphinx/index.rst +++ b/src/docs/sphinx/index.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/licenses.rst b/src/docs/sphinx/licenses.rst index 56c93abc4eeabdb58a0b2812fa68e9f1c0ece33d..cdc49b2a7d442ae3389d573bb8601f050d2ef9a1 100644 --- a/src/docs/sphinx/licenses.rst +++ b/src/docs/sphinx/licenses.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) Copyright (c) 2015-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) Copyright (c) 2015-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/presentations.rst b/src/docs/sphinx/presentations.rst index f4943af914afc40f293031c66e8c4a197b069978..0c8a14226b454138a845f9cce6af7ab4cb1666a0 100644 --- a/src/docs/sphinx/presentations.rst +++ b/src/docs/sphinx/presentations.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) Copyright (c) 2015-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) Copyright (c) 2015-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/quick_start.rst b/src/docs/sphinx/quick_start.rst index 5c510d9eed285711d555a5e5a9c93d363818211d..ac8a3572c69318787438c17433e5394167a0334f 100644 --- a/src/docs/sphinx/quick_start.rst +++ b/src/docs/sphinx/quick_start.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/relay.rst b/src/docs/sphinx/relay.rst index c5aca374091d302910083a1580c5c543995a4efd..ce975ca31000906ecdf0cba23b927c9a5634a7cb 100644 --- a/src/docs/sphinx/relay.rst +++ b/src/docs/sphinx/relay.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/relay_io.rst b/src/docs/sphinx/relay_io.rst index b5ed3db14b2b6beca42786288f67acf8e8e32c34..21a4e4c834fa02be8874d3e27f4c144c35df112c 100644 --- a/src/docs/sphinx/relay_io.rst +++ b/src/docs/sphinx/relay_io.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/relay_mpi.rst b/src/docs/sphinx/relay_mpi.rst index 9fd2d65611fac98b69ce09233bbb4e6f7e57d1ee..8cd99e58d5ed38985145d74fb6d5266c69e8233c 100644 --- a/src/docs/sphinx/relay_mpi.rst +++ b/src/docs/sphinx/relay_mpi.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/releases.rst b/src/docs/sphinx/releases.rst index 14c6a3d4c8b7cc6de30a1f970541d96cd27a7158..33f02c51c223eb2a6cb65983abb0900cba22c201 100644 --- a/src/docs/sphinx/releases.rst +++ b/src/docs/sphinx/releases.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) Copyright (c) 2015-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) Copyright (c) 2015-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # @@ -50,26 +50,93 @@ Source distributions for Conduit releases are hosted on github: https://github.com/LLNL/conduit/releases -.. note:: As of v0.3.0, Conduit uses `BLT <https://github.com/LLNL/blt>`__ as its core CMake build system. We leverage BLT as a git submodule, however github does not include submodule contents in its automatically created source tarballs. To avoid confusion, starting with v0.3.0 we will provide our own source tarballs that include BLT. +.. note:: Conduit uses `BLT <https://github.com/LLNL/blt>`__ as its core CMake build system. We leverage BLT as a git submodule, however github does not include submodule contents in its automatically created source tarballs. To avoid confusion, starting with v0.3.0 we provide our own source tarballs that include BLT. -v0.4.0-pre +v0.4.0 ----------------- +* `Source Tarball <https://github.com/LLNL/conduit/releases/download/v0.4.0/conduit-v0.4.0-src-with-blt.tar.gz>`__ + Highlights +++++++++++++ +(Extracted from Conduit's :download:`Changelog <../../../CHANGELOG.md>`) + +Added +~~~~~~~~~~~~~~~ + +* **General** + + * Added Generic IO Handle class (relay::io::IOHandle) with C++ and Python APIs, tests, and docs. + * Added ``rename_child`` method to Schema and Node + * Added generation and install of conduit_config.mk for using-with-make example + * Added datatype helpers for long long and long double + * Added error for empty path fetch + * Added C functions for setting error, warning, info handlers. + * Added limited set of C bindings for DataType + * Added C bindings for relay IO + * Added several more functions to conduit node python interfaces + +* **Blueprint** + + * Added implicit point topology docs and example + * Added julia and spiral mesh bp examples + * Added mesh topology transformations to blueprint + * Added polygonal mesh support to mesh blueprint + * Added verify method for mesh blueprint nestset + * **Relay** - - * Added Relay ADIOS support, enabling data to save using the ADIOS library. - * A relay::mpi::io library was created that mirrors the API in relay::io, except - that all functions take an MPI communicator. The functions are implemented in - parallel for the ADIOS protocol. For other protocols, they will behave the same - as the serial functions in relay::io. For the ADIOS protocol, the save() and - save_merged() functions operate collectively within a communicator to enable - multiple MPI ranks to save data to a single file as separate "domains". - * The relay::mpi::io library adds an add_time_step() function that lets the caller - append data collectively to an existing file. - * The relay library adds functions to query the number of time steps and the - number of domains in a file. + + * Added ADIOS Support, enabling ADIOS read and write of Node objects. + * Added a relay::mpi::io library that mirrors the API of relay::io, except that all functions take an MPI communicator. The functions are implemented in parallel for the ADIOS protocol. For other protocols, they will behave the same as the serial functions in relay::io. For the ADIOS protocol, the save() and save_merged() functions operate collectively within a communicator to enable multiple MPI ranks to save data to a single file as separate "domains". + * Added an add_time_step() function to that lets the caller append data collectively to an existing ADIOS file + * Added a function to query the number of time steps and the number of domains in a ADIOS file. + * Added versions of save and save_merged that take an options node. + * Added C API for new save, save_merged functions. + * Added method to list an HDF5 group's child names + * Added save and append methods to the HDF5 I/O interface + * Added docs and examples for relay io + + +Changed +~~~~~~~~~~~~~ + +* **General** + + * Changed mapping of c types to bit-width style to be compatible with C++11 std bit-width types when C++11 is enabled + * Several improvements to uberenv, our automated build process, and building directions + * Upgraded the type system with more explicit signed support + + +* **Relay** + + * Improvements to the Silo mesh writer + * Refactor to support both relay::io and relay::mpi::io namespaces. + * Refactor to add support for steps and domains to I/O interfaces + * Changed to only use ``libver latest`` setting for for hdf5 1.8 to minimize compatibility issues + +Fixed +~~~~~~~~~~~~~ + +* **General** + + * Fixed bugs with std::vector gap methods + * Fixed A few C function names in conduit_node.h + * Fixed bug in python that was requesting unsigned array for signed cases + * Fixed issue with Node::diff failing for string data with offsets + * Fixes for building on BlueOS with the xl compiler + +* **Blueprint** + + * Fixed validity status for blueprint functions + * Fixed improper error reporting for Blueprint references + + +* **Relay** + + * Relay I/O exceptions are now forwarded to python + * Fixed MPI send_with_schema bug when data was compact but not contiguous + * Switched to use MPI bit-width style data type enums in ``relay::mpi`` + v0.3.1 ----------------- diff --git a/src/docs/sphinx/tutorial_cpp.rst b/src/docs/sphinx/tutorial_cpp.rst index dda434661189d8b62400cd72294e1f05def45bed..24aa06b41a7a89b21e6a5aff39d97b094464b363 100644 --- a/src/docs/sphinx/tutorial_cpp.rst +++ b/src/docs/sphinx/tutorial_cpp.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/tutorial_cpp_basics.rst b/src/docs/sphinx/tutorial_cpp_basics.rst index 994cf15adc1e2b5ab29e909e8bc17a7cef473eaa..1852516f346d22f405033827529ef32182fd0e53 100644 --- a/src/docs/sphinx/tutorial_cpp_basics.rst +++ b/src/docs/sphinx/tutorial_cpp_basics.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/tutorial_cpp_errors.rst b/src/docs/sphinx/tutorial_cpp_errors.rst index 968588ed07e8a5579780657a97c962df1184aebc..8bfc98e2325469409c0b410723b66e1ee193fdce 100644 --- a/src/docs/sphinx/tutorial_cpp_errors.rst +++ b/src/docs/sphinx/tutorial_cpp_errors.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/tutorial_cpp_json.rst b/src/docs/sphinx/tutorial_cpp_json.rst index 3570fc4d65721d15b35549a11aa023f97e3e7cec..4982cc7d9255b536ace0b8a9d6a7638bb629bd87 100644 --- a/src/docs/sphinx/tutorial_cpp_json.rst +++ b/src/docs/sphinx/tutorial_cpp_json.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/tutorial_cpp_numeric.rst b/src/docs/sphinx/tutorial_cpp_numeric.rst index dbe1dd33283827d3edbc1f2d3f667cfbfd22b5d6..6a34e63aafbaf1a628c6cdcd3f47c341f1622e3f 100644 --- a/src/docs/sphinx/tutorial_cpp_numeric.rst +++ b/src/docs/sphinx/tutorial_cpp_numeric.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/tutorial_cpp_ownership.rst b/src/docs/sphinx/tutorial_cpp_ownership.rst index ece089d104eb13a567afd27c3e8a003cedb3daed..a1734f3eb9e3908c2f1d2b31c631582c3eb34b61 100644 --- a/src/docs/sphinx/tutorial_cpp_ownership.rst +++ b/src/docs/sphinx/tutorial_cpp_ownership.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/tutorial_cpp_update.rst b/src/docs/sphinx/tutorial_cpp_update.rst index 6a163cf8adf80eeafae6e523fe5bcccb75d0ddca..8d72b407c78edf6bfeba60f2b364cbbbf5a38669 100644 --- a/src/docs/sphinx/tutorial_cpp_update.rst +++ b/src/docs/sphinx/tutorial_cpp_update.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/tutorial_python.rst b/src/docs/sphinx/tutorial_python.rst index 1b1410da24cee000faf3c3c99a49734200b678c6..c3b5d4ff7d058c8867788b26e3e2e5ca18dfb26a 100644 --- a/src/docs/sphinx/tutorial_python.rst +++ b/src/docs/sphinx/tutorial_python.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/tutorial_python_basics.rst b/src/docs/sphinx/tutorial_python_basics.rst index d48c22ba515ea821eb89b493b784813aa5585465..c94dd55e7a46b231c2c66b32d2563dd6ad5c15a8 100644 --- a/src/docs/sphinx/tutorial_python_basics.rst +++ b/src/docs/sphinx/tutorial_python_basics.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/tutorial_python_json.rst b/src/docs/sphinx/tutorial_python_json.rst index 70a7b8350e40076294cd6853f1f1290cb18b8c16..e6d9e55e6f311a5f76924c12b3106df3bf43cc83 100644 --- a/src/docs/sphinx/tutorial_python_json.rst +++ b/src/docs/sphinx/tutorial_python_json.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/docs/sphinx/user.rst b/src/docs/sphinx/user.rst index 2413726f8864ceae15ad8d78900e7640069a0ec6..4b038cfd7d684e69de5f33950ff45af6b5b621f2 100644 --- a/src/docs/sphinx/user.rst +++ b/src/docs/sphinx/user.rst @@ -1,5 +1,5 @@ .. ############################################################################ -.. # Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +.. # Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. .. # .. # Produced at the Lawrence Livermore National Laboratory .. # diff --git a/src/examples/CMakeLists.txt b/src/examples/CMakeLists.txt index 9ea6a9a51847c30c9d69703594ef494cb3df2411..c15e1faf9a7d4a2ed5acd8ba657311e3afe03d02 100644 --- a/src/examples/CMakeLists.txt +++ b/src/examples/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) Copyright (c) 2015-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) Copyright (c) 2015-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/examples/python/conduit_python_example.py b/src/examples/python/conduit_python_example.py index 4f6e2e415bab9eeb806e69eadb7e0e70833e3b0e..f40b23e2d74f48df8847676dac628628d5d45c8d 100755 --- a/src/examples/python/conduit_python_example.py +++ b/src/examples/python/conduit_python_example.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/examples/staging/CMakeLists.txt b/src/examples/staging/CMakeLists.txt index ff8a81a92b3147a5831a9c96cbe6a2d014f1d34d..0f39b339d8fb543e093c9c32d22dac343bb97b07 100644 --- a/src/examples/staging/CMakeLists.txt +++ b/src/examples/staging/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/examples/staging/conduit_staging.cpp b/src/examples/staging/conduit_staging.cpp index b4bedb0aa1a84cea3c2504986ccd71ae17dc7706..e709ca1fa67129ed28f92476d797b68b0b2ac05c 100644 --- a/src/examples/staging/conduit_staging.cpp +++ b/src/examples/staging/conduit_staging.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/examples/using-with-cmake/CMakeLists.txt b/src/examples/using-with-cmake/CMakeLists.txt index 84c5e94e15446b1c9739361ec1fc732eb3e25db0..ca4186168c9cce2c0d538deb378e3a18ab30c037 100644 --- a/src/examples/using-with-cmake/CMakeLists.txt +++ b/src/examples/using-with-cmake/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) Copyright (c) 2015-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) Copyright (c) 2015-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/examples/using-with-cmake/FindConduit.cmake b/src/examples/using-with-cmake/FindConduit.cmake index 57b4cb68c214bd31212555e8a8d78c63074b5792..ddace37b8b8e6648cf982dba530cfa6c996b252e 100644 --- a/src/examples/using-with-cmake/FindConduit.cmake +++ b/src/examples/using-with-cmake/FindConduit.cmake @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) Copyright (c) 2015-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) Copyright (c) 2015-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/examples/using-with-cmake/example.cpp b/src/examples/using-with-cmake/example.cpp index 1cd97de4330217cd15d9f232c4d8ed206806f83c..e577b1865d0d4165b07300ca3e5ab27baa01cf64 100644 --- a/src/examples/using-with-cmake/example.cpp +++ b/src/examples/using-with-cmake/example.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/examples/using-with-make/Makefile b/src/examples/using-with-make/Makefile index edb75c7fac6eddfcabd18c77cd4eb7f0ab1e96af..760a57eb419eeafc66fff29cf59c23ecd3a57ffd 100644 --- a/src/examples/using-with-make/Makefile +++ b/src/examples/using-with-make/Makefile @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) Copyright (c) 2015-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) Copyright (c) 2015-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/examples/using-with-make/example.cpp b/src/examples/using-with-make/example.cpp index 636f5768fb68a9dc7ce9bcb9333e21df32819811..bb2346ef6cba93c3f3eb5a44e29c27850be15074 100644 --- a/src/examples/using-with-make/example.cpp +++ b/src/examples/using-with-make/example.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/CMakeLists.txt b/src/libs/CMakeLists.txt index 2a3114c26a0171dc218db13272cfbcae1a0fc519..e22d7455492ec32d0be273c3fc9e2d4693f01963 100644 --- a/src/libs/CMakeLists.txt +++ b/src/libs/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/blueprint/CMakeLists.txt b/src/libs/blueprint/CMakeLists.txt index f6c009282f0ee23e1829601679972c2133586121..85a65feb16fc4a991d1d4842f02dc98fc5d3c282 100644 --- a/src/libs/blueprint/CMakeLists.txt +++ b/src/libs/blueprint/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/blueprint/c/conduit_blueprint.h b/src/libs/blueprint/c/conduit_blueprint.h index d9398c57c9ae49c2165321d8bd2502b65e705720..48177b1cd556e6aac546940ff31c58c4350d6393 100644 --- a/src/libs/blueprint/c/conduit_blueprint.h +++ b/src/libs/blueprint/c/conduit_blueprint.h @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/c/conduit_blueprint_c.cpp b/src/libs/blueprint/c/conduit_blueprint_c.cpp index 24197cf1fff04898d9feb227c81cf15f0ebe7953..5b4ad6e12a3b1cf2c3a6d21f2e983b544ba11778 100644 --- a/src/libs/blueprint/c/conduit_blueprint_c.cpp +++ b/src/libs/blueprint/c/conduit_blueprint_c.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/c/conduit_blueprint_mcarray.h b/src/libs/blueprint/c/conduit_blueprint_mcarray.h index 94b8a2a70b09edc4626c4c31d4b066c5af98c61d..5a929aee58930d7d36d87c576544ca27514a8cbd 100644 --- a/src/libs/blueprint/c/conduit_blueprint_mcarray.h +++ b/src/libs/blueprint/c/conduit_blueprint_mcarray.h @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/c/conduit_blueprint_mcarray_c.cpp b/src/libs/blueprint/c/conduit_blueprint_mcarray_c.cpp index 8a129bebd04e9c03e0603eee550ac62a54744b87..ddebdf8326aec24afbc36bb9b25b1c812aff7ade 100644 --- a/src/libs/blueprint/c/conduit_blueprint_mcarray_c.cpp +++ b/src/libs/blueprint/c/conduit_blueprint_mcarray_c.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/c/conduit_blueprint_mesh.h b/src/libs/blueprint/c/conduit_blueprint_mesh.h index 5399577e6ac6da804c7af50f68995c8c2c002ef9..e9d384e94c59b008f9684ef378e37467518353ff 100644 --- a/src/libs/blueprint/c/conduit_blueprint_mesh.h +++ b/src/libs/blueprint/c/conduit_blueprint_mesh.h @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/c/conduit_blueprint_mesh_c.cpp b/src/libs/blueprint/c/conduit_blueprint_mesh_c.cpp index c38325290ce34f87748ca4cd7cd99979380c6ae1..50d167c89bf9b9476b982a89fee9665862b03b15 100644 --- a/src/libs/blueprint/c/conduit_blueprint_mesh_c.cpp +++ b/src/libs/blueprint/c/conduit_blueprint_mesh_c.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/conduit_blueprint.cpp b/src/libs/blueprint/conduit_blueprint.cpp index fc7cb49dec92e10f64dd210abaf36a677a3421ca..d0f0de6e17b37bad2ee406f3a1e9f95cb56f6efb 100644 --- a/src/libs/blueprint/conduit_blueprint.cpp +++ b/src/libs/blueprint/conduit_blueprint.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/conduit_blueprint.hpp b/src/libs/blueprint/conduit_blueprint.hpp index d2d2f1189227ba194391a2ac55b6d06a740ea16e..898b08e125ace8c71fe0786252f9f0afa50ee4c6 100644 --- a/src/libs/blueprint/conduit_blueprint.hpp +++ b/src/libs/blueprint/conduit_blueprint.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/conduit_blueprint_exports.h.in b/src/libs/blueprint/conduit_blueprint_exports.h.in index 192c8eedddb9a1c7c0603acb765feb1d061ec1f2..3674f428ab84814fcf611869922bd8bdc65e4b73 100644 --- a/src/libs/blueprint/conduit_blueprint_exports.h.in +++ b/src/libs/blueprint/conduit_blueprint_exports.h.in @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/conduit_blueprint_mcarray.cpp b/src/libs/blueprint/conduit_blueprint_mcarray.cpp index eac6cd4237fa25271cd8a66f92b3190f682cebdc..38954fe5990e3f0f8d7f78a552fd6effd3cd60e4 100644 --- a/src/libs/blueprint/conduit_blueprint_mcarray.cpp +++ b/src/libs/blueprint/conduit_blueprint_mcarray.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/conduit_blueprint_mcarray.hpp b/src/libs/blueprint/conduit_blueprint_mcarray.hpp index ca821b1a17e445de41508a7c82572251f54aa3fd..33a9412efe5d06b7b0e5fd8d8bf76b7ee0f67b74 100644 --- a/src/libs/blueprint/conduit_blueprint_mcarray.hpp +++ b/src/libs/blueprint/conduit_blueprint_mcarray.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/conduit_blueprint_mcarray_examples.cpp b/src/libs/blueprint/conduit_blueprint_mcarray_examples.cpp index 5f132065e04b433095bfabb01bfb2474abdf28d1..f35adb12a69f3318c1b644f4885c597a1c600f71 100644 --- a/src/libs/blueprint/conduit_blueprint_mcarray_examples.cpp +++ b/src/libs/blueprint/conduit_blueprint_mcarray_examples.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/conduit_blueprint_mcarray_examples.hpp b/src/libs/blueprint/conduit_blueprint_mcarray_examples.hpp index de7517c8ffaeafbe914b8956c4094a94ae46f200..ebe2fb1cc1de07adc9d16e61cc9b63459fa9259c 100644 --- a/src/libs/blueprint/conduit_blueprint_mcarray_examples.hpp +++ b/src/libs/blueprint/conduit_blueprint_mcarray_examples.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/conduit_blueprint_mesh.cpp b/src/libs/blueprint/conduit_blueprint_mesh.cpp index 9c7d295c9d4872ad3387fef06c5dd3021b8919eb..17e01e453d0a5b89fcd79d86e710437d885946f9 100644 --- a/src/libs/blueprint/conduit_blueprint_mesh.cpp +++ b/src/libs/blueprint/conduit_blueprint_mesh.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/conduit_blueprint_mesh.hpp b/src/libs/blueprint/conduit_blueprint_mesh.hpp index d5f96bb484625ed9206c58d25a59c2d2f97197fe..16a3b9fe449e2d9e6934261350818498c6656b5a 100644 --- a/src/libs/blueprint/conduit_blueprint_mesh.hpp +++ b/src/libs/blueprint/conduit_blueprint_mesh.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/conduit_blueprint_mesh_examples.cpp b/src/libs/blueprint/conduit_blueprint_mesh_examples.cpp index 7ac380b2d4d136af4df5d55bc4d70e4c98b1cbd4..080c04fa1d6b4ba7c7771b61973313a3e1eed287 100644 --- a/src/libs/blueprint/conduit_blueprint_mesh_examples.cpp +++ b/src/libs/blueprint/conduit_blueprint_mesh_examples.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/conduit_blueprint_mesh_examples.hpp b/src/libs/blueprint/conduit_blueprint_mesh_examples.hpp index 3bed6cf704d10cc80aad655cd09b46fc8333a67f..d12a43be4642945a790df08e655e787502a1f41a 100644 --- a/src/libs/blueprint/conduit_blueprint_mesh_examples.hpp +++ b/src/libs/blueprint/conduit_blueprint_mesh_examples.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/conduit_blueprint_verify_exe.cpp b/src/libs/blueprint/conduit_blueprint_verify_exe.cpp index 67b63ab142e097352173b2eff09126fbf407138c..6f5196f87683b17ecb4aafb36fbd8061d1b76aaf 100644 --- a/src/libs/blueprint/conduit_blueprint_verify_exe.cpp +++ b/src/libs/blueprint/conduit_blueprint_verify_exe.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/fortran/conduit_blueprint_fortran.f90 b/src/libs/blueprint/fortran/conduit_blueprint_fortran.f90 index ebef4ac548a88fbc2bf7b9bf2fd5b3ab89e813c1..e894f570b0324fafa14597653d72b4016e50946e 100644 --- a/src/libs/blueprint/fortran/conduit_blueprint_fortran.f90 +++ b/src/libs/blueprint/fortran/conduit_blueprint_fortran.f90 @@ -1,5 +1,5 @@ !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*! -!* Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +!* Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. !* !* Produced at the Lawrence Livermore National Laboratory !* diff --git a/src/libs/blueprint/fortran/conduit_blueprint_mcarray_fortran.f90 b/src/libs/blueprint/fortran/conduit_blueprint_mcarray_fortran.f90 index 1ef99d2b1a4b438cbc27cc94e069bb9dbc093815..a4ddac91386001baf5393bc766c0d78f2dbfcae2 100644 --- a/src/libs/blueprint/fortran/conduit_blueprint_mcarray_fortran.f90 +++ b/src/libs/blueprint/fortran/conduit_blueprint_mcarray_fortran.f90 @@ -1,5 +1,5 @@ !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*! -!* Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +!* Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. !* !* Produced at the Lawrence Livermore National Laboratory !* diff --git a/src/libs/blueprint/fortran/conduit_blueprint_mesh_fortran.f90 b/src/libs/blueprint/fortran/conduit_blueprint_mesh_fortran.f90 index a9de9d2afa714ca60c45476a76d5d16d58e446e4..1bb7554e8def2c3d9c451fbed7d11e340eee53fd 100644 --- a/src/libs/blueprint/fortran/conduit_blueprint_mesh_fortran.f90 +++ b/src/libs/blueprint/fortran/conduit_blueprint_mesh_fortran.f90 @@ -1,5 +1,5 @@ !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*! -!* Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +!* Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. !* !* Produced at the Lawrence Livermore National Laboratory !* diff --git a/src/libs/blueprint/python/CMakeLists.txt b/src/libs/blueprint/python/CMakeLists.txt index 5c6fb1d6cb708a34447066e763fe7acb4abaaca6..fc763dd8880a86afcc971b5cd5ce23b074259055 100644 --- a/src/libs/blueprint/python/CMakeLists.txt +++ b/src/libs/blueprint/python/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/blueprint/python/conduit_blueprint_mcarray_examples_python.cpp b/src/libs/blueprint/python/conduit_blueprint_mcarray_examples_python.cpp index d0f69ced55cf9d92c16375ddc366d33712e6c9fe..47209109f908d8625a831f1bf2910216eacf2afd 100644 --- a/src/libs/blueprint/python/conduit_blueprint_mcarray_examples_python.cpp +++ b/src/libs/blueprint/python/conduit_blueprint_mcarray_examples_python.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/python/conduit_blueprint_mcarray_python.cpp b/src/libs/blueprint/python/conduit_blueprint_mcarray_python.cpp index 6fb09ebf37fa43c1c29cb599dda35545e627b0b8..07950c695ff9213f680d9d70b8304af10b62aaa7 100644 --- a/src/libs/blueprint/python/conduit_blueprint_mcarray_python.cpp +++ b/src/libs/blueprint/python/conduit_blueprint_mcarray_python.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/python/conduit_blueprint_mesh_examples_python.cpp b/src/libs/blueprint/python/conduit_blueprint_mesh_examples_python.cpp index b628c3125bb36afc154062057146318fee1eaa58..09a114c0b0fce7053380d3cb0794cbad050fc175 100644 --- a/src/libs/blueprint/python/conduit_blueprint_mesh_examples_python.cpp +++ b/src/libs/blueprint/python/conduit_blueprint_mesh_examples_python.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/python/conduit_blueprint_mesh_python.cpp b/src/libs/blueprint/python/conduit_blueprint_mesh_python.cpp index 8599ea100aa5b0b84ef4a75c9fd2d805395eb98a..cc73162c2801da457f78e3ced31ab30e195d770b 100644 --- a/src/libs/blueprint/python/conduit_blueprint_mesh_python.cpp +++ b/src/libs/blueprint/python/conduit_blueprint_mesh_python.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/python/conduit_blueprint_python.cpp b/src/libs/blueprint/python/conduit_blueprint_python.cpp index 1d01aa4d932ae2176265a37eebc6f421493af3ef..66849c759c945a61cc970830f1d3eb7d6aaf7085 100644 --- a/src/libs/blueprint/python/conduit_blueprint_python.cpp +++ b/src/libs/blueprint/python/conduit_blueprint_python.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/python/conduit_blueprint_python_exports.h.in b/src/libs/blueprint/python/conduit_blueprint_python_exports.h.in index 9bdfd38fced1a3a1dc4f9388466611742ff2a7f7..7c23fed7e04acbd2684e9f0b35845426b301b86b 100644 --- a/src/libs/blueprint/python/conduit_blueprint_python_exports.h.in +++ b/src/libs/blueprint/python/conduit_blueprint_python_exports.h.in @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/blueprint/python/py_src/__init__.py b/src/libs/blueprint/python/py_src/__init__.py index 255e845e82e1031f553a35da654a5bb396779f62..fb69798daab24c0db8f829a5ba4e6bde39d72c3a 100644 --- a/src/libs/blueprint/python/py_src/__init__.py +++ b/src/libs/blueprint/python/py_src/__init__.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/blueprint/python/py_src/mcarray/__init__.py b/src/libs/blueprint/python/py_src/mcarray/__init__.py index d311c4ad9217fc0fee57091a4d751999ff1b07bd..2acef0d06ab4b7521544defe5c88386d66b72ca7 100644 --- a/src/libs/blueprint/python/py_src/mcarray/__init__.py +++ b/src/libs/blueprint/python/py_src/mcarray/__init__.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/blueprint/python/py_src/mcarray/examples/__init__.py b/src/libs/blueprint/python/py_src/mcarray/examples/__init__.py index 10c2911fc0e45e61106a1d72058c857909781a26..d6ec6e7e55cd48ac21074f1896bb4a9a89406f76 100644 --- a/src/libs/blueprint/python/py_src/mcarray/examples/__init__.py +++ b/src/libs/blueprint/python/py_src/mcarray/examples/__init__.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/blueprint/python/py_src/mesh/__init__.py b/src/libs/blueprint/python/py_src/mesh/__init__.py index 511c073e1e9bb5c7717cc2dfc698c3b6d1f25922..1c1735d7d76028e356714bbb30f2c862128f9913 100644 --- a/src/libs/blueprint/python/py_src/mesh/__init__.py +++ b/src/libs/blueprint/python/py_src/mesh/__init__.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/blueprint/python/py_src/mesh/examples/__init__.py b/src/libs/blueprint/python/py_src/mesh/examples/__init__.py index 36ccb44ca84513cd80221e23ef0ba73bc0559cc4..0bd1590dd7f68494305be5606fe3edbfbe97e2d3 100644 --- a/src/libs/blueprint/python/py_src/mesh/examples/__init__.py +++ b/src/libs/blueprint/python/py_src/mesh/examples/__init__.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/conduit/CMakeLists.txt b/src/libs/conduit/CMakeLists.txt index 9aab64c452fa397efe94c924d555112c893150f1..6e412940353728be2762a3ea24719ebaf416f9f9 100644 --- a/src/libs/conduit/CMakeLists.txt +++ b/src/libs/conduit/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2015-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2015-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/conduit/c/conduit.h b/src/libs/conduit/c/conduit.h index bfd6cad769fb7629d25dad1e578fa19a01495ae9..5fed0c3bc12a0cc6532db81bc9b7d672b37fb26c 100644 --- a/src/libs/conduit/c/conduit.h +++ b/src/libs/conduit/c/conduit.h @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/c/conduit_c.cpp b/src/libs/conduit/c/conduit_c.cpp index 96c39d9108fccbae05c5c347f1cc6d8b014e4019..91077b7a1f7a5732c586c97b282fba49d8d1c6b4 100644 --- a/src/libs/conduit/c/conduit_c.cpp +++ b/src/libs/conduit/c/conduit_c.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/c/conduit_cpp_to_c.cpp b/src/libs/conduit/c/conduit_cpp_to_c.cpp index c2eba0c7d17935ec1e24cbaaf7113f20d75dce52..1382b4d0cc87b2a406a35acb4efd01032ed7f5f4 100644 --- a/src/libs/conduit/c/conduit_cpp_to_c.cpp +++ b/src/libs/conduit/c/conduit_cpp_to_c.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/c/conduit_cpp_to_c.hpp b/src/libs/conduit/c/conduit_cpp_to_c.hpp index e1bbfeae9de7edf0f49fadc3cbbcb7f82b042143..79d3cfc8573d5129bd28bb6f5f7ecb9dbba03d03 100644 --- a/src/libs/conduit/c/conduit_cpp_to_c.hpp +++ b/src/libs/conduit/c/conduit_cpp_to_c.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) Copyright (c) 2015-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) Copyright (c) 2015-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/c/conduit_datatype.h b/src/libs/conduit/c/conduit_datatype.h index 7eaa988dcef39860544dd347f2e7322cf2c7b72c..970041020d2eefafd1235122988fd8fd15415081 100644 --- a/src/libs/conduit/c/conduit_datatype.h +++ b/src/libs/conduit/c/conduit_datatype.h @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) Copyright (c) 2015-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) Copyright (c) 2015-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/c/conduit_datatype_c.cpp b/src/libs/conduit/c/conduit_datatype_c.cpp index 5ca0917b345ad3802230d424084a266fceeaef1e..b990fb8ce86010d6d7233513506fc8a9f9ce0bf8 100644 --- a/src/libs/conduit/c/conduit_datatype_c.cpp +++ b/src/libs/conduit/c/conduit_datatype_c.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/c/conduit_node.h b/src/libs/conduit/c/conduit_node.h index eea72b27760eff70af54fc6ceba124bdb7276bd8..0600ea486d6deda62b360e5a0e77ba7e1d4293f8 100644 --- a/src/libs/conduit/c/conduit_node.h +++ b/src/libs/conduit/c/conduit_node.h @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) Copyright (c) 2015-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) Copyright (c) 2015-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/c/conduit_node_c.cpp b/src/libs/conduit/c/conduit_node_c.cpp index 041879dfcb9bedd0a502063e57e3828472de578c..e751bba89a8e1dd31cfbdef90154e170df2b3f1b 100644 --- a/src/libs/conduit/c/conduit_node_c.cpp +++ b/src/libs/conduit/c/conduit_node_c.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/c/conduit_utils.h b/src/libs/conduit/c/conduit_utils.h index c3dffce5c4a49b6dbc9510f1f821ae501653c4ed..79f64677135afebaa6e76301e6f21c33004fb507 100644 --- a/src/libs/conduit/c/conduit_utils.h +++ b/src/libs/conduit/c/conduit_utils.h @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/c/conduit_utils_c.cpp b/src/libs/conduit/c/conduit_utils_c.cpp index 2b2417229757600c3d79da3ccab0fedfdc979881..0addcbb7ecb282dee63f4ef3a2bbdd728ded380d 100644 --- a/src/libs/conduit/c/conduit_utils_c.cpp +++ b/src/libs/conduit/c/conduit_utils_c.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/cmake/BitwidthMapping.cmake b/src/libs/conduit/cmake/BitwidthMapping.cmake index e6b9c3c8c3c7562cdd3f411acbd6256e9a126b21..bba43ec909ced2835db7531094e8af7c5c5af59b 100644 --- a/src/libs/conduit/cmake/BitwidthMapping.cmake +++ b/src/libs/conduit/cmake/BitwidthMapping.cmake @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) Copyright (c) 2015-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) Copyright (c) 2015-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/conduit/cmake/cmake_cxx11_check_if_long_long_is_std_int64.cpp b/src/libs/conduit/cmake/cmake_cxx11_check_if_long_long_is_std_int64.cpp index 94b04ea464b7f3af406a577904c88b2f8822bc6e..15290d60b2a4b97b4ec0f395ea1ba8a876618ba9 100644 --- a/src/libs/conduit/cmake/cmake_cxx11_check_if_long_long_is_std_int64.cpp +++ b/src/libs/conduit/cmake/cmake_cxx11_check_if_long_long_is_std_int64.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit.hpp b/src/libs/conduit/conduit.hpp index 803b01bf2bae89e1d12f367e06aba1062f0b6ac4..645f13a73d41213be276c50d5e8c61cc4b57d91d 100644 --- a/src/libs/conduit/conduit.hpp +++ b/src/libs/conduit/conduit.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_bitwidth_style_types.h.in b/src/libs/conduit/conduit_bitwidth_style_types.h.in index a3dcf0ed08851b8bf0afb5625248bb57ad48ed9c..32e9afa6195cde801b2e4013243647c19dab8c82 100644 --- a/src/libs/conduit/conduit_bitwidth_style_types.h.in +++ b/src/libs/conduit/conduit_bitwidth_style_types.h.in @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_config.h.in b/src/libs/conduit/conduit_config.h.in index e9b1f266a9dea238739d924391096d5c68b4a628..d06c8fb70c9b80d815f631a075eeb5a3ac346a4b 100644 --- a/src/libs/conduit/conduit_config.h.in +++ b/src/libs/conduit/conduit_config.h.in @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_core.cpp b/src/libs/conduit/conduit_core.cpp index a556fee95d91ffe1c2b9e74d3e0b5e6b4775f676..3973446df60db3587c8f9e086c52539528cef661 100644 --- a/src/libs/conduit/conduit_core.cpp +++ b/src/libs/conduit/conduit_core.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_core.hpp b/src/libs/conduit/conduit_core.hpp index 4b897577b9b900cd77ccc529bd05f50d890f7bb8..bd924e77a49825ee395a4579a66418fbb37e417d 100644 --- a/src/libs/conduit/conduit_core.hpp +++ b/src/libs/conduit/conduit_core.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_data_array.cpp b/src/libs/conduit/conduit_data_array.cpp index 243db4b7e1839d562a9066bd47565e444a296277..9a2860e69ddd134b0f63469480c5b497b15652c5 100644 --- a/src/libs/conduit/conduit_data_array.cpp +++ b/src/libs/conduit/conduit_data_array.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_data_array.hpp b/src/libs/conduit/conduit_data_array.hpp index c5bbe93cc3b55d11b5f80ea8855eeec43ba6f275..e79b44fb94627be957a7652f4e37f9b563161a58 100644 --- a/src/libs/conduit/conduit_data_array.hpp +++ b/src/libs/conduit/conduit_data_array.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_data_type.cpp b/src/libs/conduit/conduit_data_type.cpp index bb4452ac4918ed402c0ab12f00fce0934729d8e1..9cd036547f65bf5c0bdafbace444d179e7e1e753 100644 --- a/src/libs/conduit/conduit_data_type.cpp +++ b/src/libs/conduit/conduit_data_type.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_data_type.hpp b/src/libs/conduit/conduit_data_type.hpp index f9650e48fb509ea8c5b1ca7ec67cd1e454d456bc..3a26923988963737a164b8b6797473968f9cc2e8 100644 --- a/src/libs/conduit/conduit_data_type.hpp +++ b/src/libs/conduit/conduit_data_type.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_endianness.cpp b/src/libs/conduit/conduit_endianness.cpp index 818c1e05bb05c105d49f09e31e2561494b7c364e..f671dcabc4ed3839fc1e3fe50af93d80ee5a71ac 100644 --- a/src/libs/conduit/conduit_endianness.cpp +++ b/src/libs/conduit/conduit_endianness.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_endianness.hpp b/src/libs/conduit/conduit_endianness.hpp index a22140bdad6049cd226fba3c8e937eb8d00a7464..fe70a093e990e8efa502a77dfbf11552401ce917 100644 --- a/src/libs/conduit/conduit_endianness.hpp +++ b/src/libs/conduit/conduit_endianness.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_endianness_types.h b/src/libs/conduit/conduit_endianness_types.h index 46945c1d1f33687b548012c5d8bd22922dd5e67f..0cc66e46f53098292c3a15e73f77eb5b78e50ff0 100644 --- a/src/libs/conduit/conduit_endianness_types.h +++ b/src/libs/conduit/conduit_endianness_types.h @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_error.cpp b/src/libs/conduit/conduit_error.cpp index eec3ca89461638c68ff76cbec8778f1d205303b0..14ca4f2cc0e19508dea6a466d903c7d1e3a777c8 100644 --- a/src/libs/conduit/conduit_error.cpp +++ b/src/libs/conduit/conduit_error.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_error.hpp b/src/libs/conduit/conduit_error.hpp index 445c1fbc735aca5b27003f0eae14b497d50425ba..9676795a9f6a373a088ad6034b0fb10737e91596 100644 --- a/src/libs/conduit/conduit_error.hpp +++ b/src/libs/conduit/conduit_error.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_exports.h.in b/src/libs/conduit/conduit_exports.h.in index 4c98b6394d22c2821391360426db9fac8379c4ff..4bcb51172e5129d38f38408c91639411c9af4c6d 100644 --- a/src/libs/conduit/conduit_exports.h.in +++ b/src/libs/conduit/conduit_exports.h.in @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_generator.cpp b/src/libs/conduit/conduit_generator.cpp index f49adc689a307ff0bb51c6cf719b999492f866c1..a59538d6bbcb44589caeb5f69eee63bd25277ebd 100644 --- a/src/libs/conduit/conduit_generator.cpp +++ b/src/libs/conduit/conduit_generator.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_generator.hpp b/src/libs/conduit/conduit_generator.hpp index 97db62e9a1bfe3010365c1bc617f866416eacaf1..f207f6c5227e40daff9f5088eb22de43e2828d36 100644 --- a/src/libs/conduit/conduit_generator.hpp +++ b/src/libs/conduit/conduit_generator.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_license.hpp b/src/libs/conduit/conduit_license.hpp index d86f44ffcab16e6b8b46011e79f354dcfdb749dc..cfa11a95c2af949ca50ddaa8bde5b15d80e8bc7b 100644 --- a/src/libs/conduit/conduit_license.hpp +++ b/src/libs/conduit/conduit_license.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // @@ -68,7 +68,7 @@ #ifndef CONDUIT_LICENSE_TEXT_HPP #define CONDUIT_LICENSE_TEXT_HPP -std::string CONDUIT_LICENSE_TEXT = "Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC.\n" +std::string CONDUIT_LICENSE_TEXT = "Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC.\n" "\n" "Produced at the Lawrence Livermore National Laboratory\n" "\n" diff --git a/src/libs/conduit/conduit_log.cpp b/src/libs/conduit/conduit_log.cpp index 6ca229a03ae1f8649ceac243c7bb2e0fb1a9439e..f05d80fb7f5dfcde4b5a2f35c05254589d3fdbd7 100644 --- a/src/libs/conduit/conduit_log.cpp +++ b/src/libs/conduit/conduit_log.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_log.hpp b/src/libs/conduit/conduit_log.hpp index 0981c0a12a65f0c55e1a53a0ebc0b1542bc109d6..c8c0f86e7a8b547c50720a36664b89a99877418b 100644 --- a/src/libs/conduit/conduit_log.hpp +++ b/src/libs/conduit/conduit_log.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_node.cpp b/src/libs/conduit/conduit_node.cpp index 2fb4a693589d22b9d20ae0fe225779d7ea01263d..4777bb8eec2ed683c7a2d5c1e7c538e444d6b741 100644 --- a/src/libs/conduit/conduit_node.cpp +++ b/src/libs/conduit/conduit_node.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_node.hpp b/src/libs/conduit/conduit_node.hpp index bd1fd1a60a64c2592da1d09c59598dbd3770ba24..6baadcc78342a8879f7c7e7c9356daf9144c352e 100644 --- a/src/libs/conduit/conduit_node.hpp +++ b/src/libs/conduit/conduit_node.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_node_iterator.cpp b/src/libs/conduit/conduit_node_iterator.cpp index 0aa2cee753b48c9723d27fb2790101b8d599d931..cc850cc002d07f59e552e63dbd3495d02321400b 100644 --- a/src/libs/conduit/conduit_node_iterator.cpp +++ b/src/libs/conduit/conduit_node_iterator.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_node_iterator.hpp b/src/libs/conduit/conduit_node_iterator.hpp index c5e63dc6245838d23c1f57fe13c53521335529d0..a5e1bdd1b11a84f59c9dcff03b1e608f9d24661f 100644 --- a/src/libs/conduit/conduit_node_iterator.hpp +++ b/src/libs/conduit/conduit_node_iterator.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_schema.cpp b/src/libs/conduit/conduit_schema.cpp index 2e39edc98d0da8ceb22275e0c2792e23d5dc14be..239d8f4fae067fc00d4401d4f888fdaf17e92e4e 100644 --- a/src/libs/conduit/conduit_schema.cpp +++ b/src/libs/conduit/conduit_schema.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_schema.hpp b/src/libs/conduit/conduit_schema.hpp index 812e22f6f2007b8849cc8ae59b27adfed7941aec..4c2c0f8c455edcbe50214426a9e679f6de8adc99 100644 --- a/src/libs/conduit/conduit_schema.hpp +++ b/src/libs/conduit/conduit_schema.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_utils.cpp b/src/libs/conduit/conduit_utils.cpp index 0bd3b53e977a468bf93259f37cf833a42b33d28f..1d4c8d5b3ca56ec65a4dd5c0738379debb67a5ce 100644 --- a/src/libs/conduit/conduit_utils.cpp +++ b/src/libs/conduit/conduit_utils.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/conduit_utils.hpp b/src/libs/conduit/conduit_utils.hpp index 72f68a93acf87145711305a5281d3b2f5d90ae0a..dc5b948c31f17542707eb85f7d24f44d4b070134 100644 --- a/src/libs/conduit/conduit_utils.hpp +++ b/src/libs/conduit/conduit_utils.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/fortran/conduit_fortran.F90 b/src/libs/conduit/fortran/conduit_fortran.F90 index 849a2ae80f312103923a53e39559a4cd5f76bedb..fd81da945f413a4200dd6009690210a368b31561 100644 --- a/src/libs/conduit/fortran/conduit_fortran.F90 +++ b/src/libs/conduit/fortran/conduit_fortran.F90 @@ -1,5 +1,5 @@ !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*! -!* Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +!* Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. !* !* Produced at the Lawrence Livermore National Laboratory !* diff --git a/src/libs/conduit/fortran/conduit_fortran_bitwidth_style_types.inc.in b/src/libs/conduit/fortran/conduit_fortran_bitwidth_style_types.inc.in index 763f05bc3d1afbd6832ee0027bfb42d9928c67a8..39df2dc9d86bc822ebe9bd2d8d1e9508ccbacfb6 100644 --- a/src/libs/conduit/fortran/conduit_fortran_bitwidth_style_types.inc.in +++ b/src/libs/conduit/fortran/conduit_fortran_bitwidth_style_types.inc.in @@ -1,5 +1,5 @@ !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*! -!* Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +!* Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. !* !* Produced at the Lawrence Livermore National Laboratory !* diff --git a/src/libs/conduit/fortran/conduit_fortran_obj.f90 b/src/libs/conduit/fortran/conduit_fortran_obj.f90 index dd9a8b8a45f65a6970b3884040fd41f5c2297039..63fe5205a564b1a6e3e74ae23935549ae663cade 100644 --- a/src/libs/conduit/fortran/conduit_fortran_obj.f90 +++ b/src/libs/conduit/fortran/conduit_fortran_obj.f90 @@ -1,5 +1,5 @@ !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*! -!* Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +!* Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. !* !* Produced at the Lawrence Livermore National Laboratory !* diff --git a/src/libs/conduit/python/CMakeLists.txt b/src/libs/conduit/python/CMakeLists.txt index 1c86d601e8f11601a7dcfb824e9dea49c37d30df..efafee5a084dc0c5c3b0e89862a6293abf49bb66 100644 --- a/src/libs/conduit/python/CMakeLists.txt +++ b/src/libs/conduit/python/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/conduit/python/conduit_python.cpp b/src/libs/conduit/python/conduit_python.cpp index 3a683380127b8ee93c0bee5f2ba6f0e5cd86700a..71048be22f81edef17b82dc6fbf534209490c418 100644 --- a/src/libs/conduit/python/conduit_python.cpp +++ b/src/libs/conduit/python/conduit_python.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/python/conduit_python.hpp b/src/libs/conduit/python/conduit_python.hpp index 8039cf0433979fb31f7ac0b99603ca54261fb50d..e0a29d41dc254e10f0c14e17a0d0aab839f335c0 100644 --- a/src/libs/conduit/python/conduit_python.hpp +++ b/src/libs/conduit/python/conduit_python.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/python/conduit_python_exports.h.in b/src/libs/conduit/python/conduit_python_exports.h.in index 8363d01d5f2f0f713939374f026bd426c5130e6e..1adb052bf6853f1bc133dbae30512fc85433b18d 100644 --- a/src/libs/conduit/python/conduit_python_exports.h.in +++ b/src/libs/conduit/python/conduit_python_exports.h.in @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/conduit/python/py_src/__init__.py b/src/libs/conduit/python/py_src/__init__.py index 4f17cf3358a6a5725fe407728274bd9ad473f77a..80fd34633d6872786a10ccc676d60cc05215ca97 100644 --- a/src/libs/conduit/python/py_src/__init__.py +++ b/src/libs/conduit/python/py_src/__init__.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/relay/c/conduit_relay.h b/src/libs/relay/c/conduit_relay.h index 699911673c70bb9113c47369ba332e595276cbb1..c5629088a2dea224ed153246af15c5f061f60103 100644 --- a/src/libs/relay/c/conduit_relay.h +++ b/src/libs/relay/c/conduit_relay.h @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/c/conduit_relay_c.cpp b/src/libs/relay/c/conduit_relay_c.cpp index c41c9176e834440f5be2d62197ae32bde9055282..77cd2516823e612eecc8e02f59d6980e45d8f145 100644 --- a/src/libs/relay/c/conduit_relay_c.cpp +++ b/src/libs/relay/c/conduit_relay_c.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/c/conduit_relay_io.h b/src/libs/relay/c/conduit_relay_io.h index 2973d0558d12dbb79aed7a7d780ec1fd6c82b5cb..c73dd073f6915612f1030fa989e1b5ddc08814c2 100644 --- a/src/libs/relay/c/conduit_relay_io.h +++ b/src/libs/relay/c/conduit_relay_io.h @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/c/conduit_relay_io_c.cpp b/src/libs/relay/c/conduit_relay_io_c.cpp index 9fa0b6d5070c57a7e22f5f169c9f7911abe643ef..9a2dde411c089f0e9c85cb65ae4b70a53b7a0380 100644 --- a/src/libs/relay/c/conduit_relay_io_c.cpp +++ b/src/libs/relay/c/conduit_relay_io_c.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/c/conduit_relay_mpi.h b/src/libs/relay/c/conduit_relay_mpi.h index 16b1dd7f30cc5b306bce0028dccda190a71f0c29..5e4b8084fc1e58a1ba6d1d9158afacaf2b6f4222 100644 --- a/src/libs/relay/c/conduit_relay_mpi.h +++ b/src/libs/relay/c/conduit_relay_mpi.h @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/c/conduit_relay_mpi_io.h b/src/libs/relay/c/conduit_relay_mpi_io.h index 13c552aa9b9907ba65bf3a3fe60eeae95d4ce2b3..5588903fc5e7bb988fe5cf542e41eb0f4fa41c1c 100644 --- a/src/libs/relay/c/conduit_relay_mpi_io.h +++ b/src/libs/relay/c/conduit_relay_mpi_io.h @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/c/conduit_relay_mpi_io_c.cpp b/src/libs/relay/c/conduit_relay_mpi_io_c.cpp index 6109945b143fdc47ff13625a5388c6224dd61bc2..0ac0b4503f0b817ed25716dcbf4ba47812b3bb78 100644 --- a/src/libs/relay/c/conduit_relay_mpi_io_c.cpp +++ b/src/libs/relay/c/conduit_relay_mpi_io_c.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay.cpp b/src/libs/relay/conduit_relay.cpp index b1272df38d29114ac2a22b078af6304465765668..3190231d6d723c7bde3a8630c3405b0cd76157e5 100644 --- a/src/libs/relay/conduit_relay.cpp +++ b/src/libs/relay/conduit_relay.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay.hpp b/src/libs/relay/conduit_relay.hpp index 85ca2ca150a4486db2d83f8c8c697acc718803aa..4a0e5a4b7b6d6892d34c87b85d9b9a4205956147 100644 --- a/src/libs/relay/conduit_relay.hpp +++ b/src/libs/relay/conduit_relay.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_config.h.in b/src/libs/relay/conduit_relay_config.h.in index 7f63fac7c1c34fa9cb8347f1a02dc47e1add707a..0e8502bbaeb842fdc830e537451e60c5890cc485 100644 --- a/src/libs/relay/conduit_relay_config.h.in +++ b/src/libs/relay/conduit_relay_config.h.in @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_exports.h.in b/src/libs/relay/conduit_relay_exports.h.in index d8d6839f087099257216c443e9c2ac9e29370be1..63cfbfef3a23ab4a6c6887aaed6a374e1658ad06 100644 --- a/src/libs/relay/conduit_relay_exports.h.in +++ b/src/libs/relay/conduit_relay_exports.h.in @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_hdf5.hpp b/src/libs/relay/conduit_relay_hdf5.hpp index 534b6bfc993140c752923f1d87ecaf3d9e9ae204..a2dbd2129e7d179ce6ff3f1c7edeac104613a342 100644 --- a/src/libs/relay/conduit_relay_hdf5.hpp +++ b/src/libs/relay/conduit_relay_hdf5.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_io.cpp b/src/libs/relay/conduit_relay_io.cpp index a5b6190c8606c5c4cdbd5dde23c5ab2e2f784800..ecce5410939dc463ecc0904ce4bff5b6feac8a05 100644 --- a/src/libs/relay/conduit_relay_io.cpp +++ b/src/libs/relay/conduit_relay_io.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_io.hpp b/src/libs/relay/conduit_relay_io.hpp index 0ee1d486c7abe972dec5650b75843bc07b7c577a..7487fb5cf936f40013b48628ac42273bab91b750 100644 --- a/src/libs/relay/conduit_relay_io.hpp +++ b/src/libs/relay/conduit_relay_io.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_io_adios.cpp b/src/libs/relay/conduit_relay_io_adios.cpp index 69365165ba233592f9d41f7cdeafb025ff5c1cfe..9aaeb2c279485cc56d6362407661a42fc889148b 100644 --- a/src/libs/relay/conduit_relay_io_adios.cpp +++ b/src/libs/relay/conduit_relay_io_adios.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_io_adios.hpp b/src/libs/relay/conduit_relay_io_adios.hpp index 3c96399321c53869345d5e75b6ce46142c95ad46..a3df934b1eff2fda91f6d4b62b9b39e4d74241b7 100644 --- a/src/libs/relay/conduit_relay_io_adios.hpp +++ b/src/libs/relay/conduit_relay_io_adios.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_io_adios_api.hpp b/src/libs/relay/conduit_relay_io_adios_api.hpp index fef7188fab008d40855ae5498fd5834e7c4e82fb..221e28dc8cb0a5796a68b94391505e800b4b63df 100644 --- a/src/libs/relay/conduit_relay_io_adios_api.hpp +++ b/src/libs/relay/conduit_relay_io_adios_api.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_io_blueprint.cpp b/src/libs/relay/conduit_relay_io_blueprint.cpp index 51b0670cc227c7abe8dd47dac28ccae144222ed7..7c33d01f5429753ff3e21fba6b8b49e63a1dbf26 100644 --- a/src/libs/relay/conduit_relay_io_blueprint.cpp +++ b/src/libs/relay/conduit_relay_io_blueprint.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_io_blueprint.hpp b/src/libs/relay/conduit_relay_io_blueprint.hpp index f9c9805a5847a7766df5c468c4e0d89553be31b9..f830127d4bd68f0903e7172157f8adcb2887b646 100644 --- a/src/libs/relay/conduit_relay_io_blueprint.hpp +++ b/src/libs/relay/conduit_relay_io_blueprint.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_io_blueprint_api.hpp b/src/libs/relay/conduit_relay_io_blueprint_api.hpp index 9c7d9ee14f25f460c767941fe5e0ea81f83ce94e..a4438f803ee1625ea66ef1f468e75edf89865cbe 100644 --- a/src/libs/relay/conduit_relay_io_blueprint_api.hpp +++ b/src/libs/relay/conduit_relay_io_blueprint_api.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_io_convert_exe.cpp b/src/libs/relay/conduit_relay_io_convert_exe.cpp index 02aa05dbf90a56f420ccab5234c02a4386efa375..2fa248af8d67205a3a909d1cd011299c12a26124 100644 --- a/src/libs/relay/conduit_relay_io_convert_exe.cpp +++ b/src/libs/relay/conduit_relay_io_convert_exe.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_io_handle.cpp b/src/libs/relay/conduit_relay_io_handle.cpp index ec7f116ab591ee90f30ff274855a893f99cacd3f..55a3ebb76e4731d233841b163d631fa38e80ab18 100644 --- a/src/libs/relay/conduit_relay_io_handle.cpp +++ b/src/libs/relay/conduit_relay_io_handle.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_io_handle.hpp b/src/libs/relay/conduit_relay_io_handle.hpp index 81e0e3222b4258cb5c9e28d4455054e59909f5d0..18f799fd193413e248f655a03c06699155d149ff 100644 --- a/src/libs/relay/conduit_relay_io_handle.hpp +++ b/src/libs/relay/conduit_relay_io_handle.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_io_handle_api.hpp b/src/libs/relay/conduit_relay_io_handle_api.hpp index ce0aa7f829e311d210d448550c14960a52426ad0..7ebd547649c9b633890f0907cf063f1f7985a57b 100644 --- a/src/libs/relay/conduit_relay_io_handle_api.hpp +++ b/src/libs/relay/conduit_relay_io_handle_api.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_io_hdf5.cpp b/src/libs/relay/conduit_relay_io_hdf5.cpp index ba49658a60fd457767f8c2658c583e89aced0b26..de4ac4822ced244269b1ddd75c66af01408acfb7 100644 --- a/src/libs/relay/conduit_relay_io_hdf5.cpp +++ b/src/libs/relay/conduit_relay_io_hdf5.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_io_hdf5.hpp b/src/libs/relay/conduit_relay_io_hdf5.hpp index ee6551dfde1e09b31746aa1284778bc8d9037a42..1e57887ca256b7d3f8fe7f32b9aeb49b99a2777e 100644 --- a/src/libs/relay/conduit_relay_io_hdf5.hpp +++ b/src/libs/relay/conduit_relay_io_hdf5.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_io_hdf5_api.hpp b/src/libs/relay/conduit_relay_io_hdf5_api.hpp index 4f7d12d2d0d229325a950ade25e173c8a2d53684..94c856e0045e5d28e6ea8ce1aad5765449707fce 100644 --- a/src/libs/relay/conduit_relay_io_hdf5_api.hpp +++ b/src/libs/relay/conduit_relay_io_hdf5_api.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_io_identify_protocol.hpp b/src/libs/relay/conduit_relay_io_identify_protocol.hpp index 8f343cef4ef86c76060c0734c3cc4fea768225ce..82768b0e0f70de7fe712dc9741b72216ca128034 100644 --- a/src/libs/relay/conduit_relay_io_identify_protocol.hpp +++ b/src/libs/relay/conduit_relay_io_identify_protocol.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_io_identify_protocol_api.hpp b/src/libs/relay/conduit_relay_io_identify_protocol_api.hpp index 8afde315b78beb296cfffef7a722faea357463ce..ba95933bdcbb890abd69cff30b108fa4dafe3bf1 100644 --- a/src/libs/relay/conduit_relay_io_identify_protocol_api.hpp +++ b/src/libs/relay/conduit_relay_io_identify_protocol_api.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_io_ls_exe.cpp b/src/libs/relay/conduit_relay_io_ls_exe.cpp index cbb093bd3c06874abd50ecaf8321fea0a347110c..edef2a95949e2f915426907df94464f668f3cdbd 100644 --- a/src/libs/relay/conduit_relay_io_ls_exe.cpp +++ b/src/libs/relay/conduit_relay_io_ls_exe.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_io_silo.cpp b/src/libs/relay/conduit_relay_io_silo.cpp index 5ef51a6e0d06974148e33233777875184315bcf3..2d5f4afd7d016d2611ad0aa6e76b12a6a53e08d9 100644 --- a/src/libs/relay/conduit_relay_io_silo.cpp +++ b/src/libs/relay/conduit_relay_io_silo.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_io_silo.hpp b/src/libs/relay/conduit_relay_io_silo.hpp index 4fb6da4057364f267aa5c3b3d68e3616e7085283..2f4816e7ca877404c07a179405f78732c17b07a2 100644 --- a/src/libs/relay/conduit_relay_io_silo.hpp +++ b/src/libs/relay/conduit_relay_io_silo.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_io_silo_api.hpp b/src/libs/relay/conduit_relay_io_silo_api.hpp index 84c983c3677afad18f4096fd89a5e0493a77d5d0..8d91bc7641400b15057f0616101c155b164dba73 100644 --- a/src/libs/relay/conduit_relay_io_silo_api.hpp +++ b/src/libs/relay/conduit_relay_io_silo_api.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_mpi.cpp b/src/libs/relay/conduit_relay_mpi.cpp index 719324ce36c5c302d9e6670c708bc2354571b3f2..ddbd013cc5a37a6a6e28299a0a79b45190752dd8 100644 --- a/src/libs/relay/conduit_relay_mpi.cpp +++ b/src/libs/relay/conduit_relay_mpi.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_mpi.hpp b/src/libs/relay/conduit_relay_mpi.hpp index baa24b572d5748348aeaeead816a69a0151ce7d8..c87c09b5d3c1053e4a043e48623a53ff5482f2c7 100644 --- a/src/libs/relay/conduit_relay_mpi.hpp +++ b/src/libs/relay/conduit_relay_mpi.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_mpi_io.cpp b/src/libs/relay/conduit_relay_mpi_io.cpp index ba505c812355403792b34eb3d8926fc07333af00..8a2806c0cbccc42726c8dcd7997358b96b47a38a 100644 --- a/src/libs/relay/conduit_relay_mpi_io.cpp +++ b/src/libs/relay/conduit_relay_mpi_io.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_mpi_io.hpp b/src/libs/relay/conduit_relay_mpi_io.hpp index 6181a8f7d8654e138b59cb0a445c4132ab5a3fa6..11141ff4c26901b686fb3f1b3dec0f64c8bd514c 100644 --- a/src/libs/relay/conduit_relay_mpi_io.hpp +++ b/src/libs/relay/conduit_relay_mpi_io.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_mpi_io_adios.hpp b/src/libs/relay/conduit_relay_mpi_io_adios.hpp index 593202ad2ff504f0730dc5af35e41e47808b79c4..91a030b76f36940de419f1c890e87b04a86f0bda 100644 --- a/src/libs/relay/conduit_relay_mpi_io_adios.hpp +++ b/src/libs/relay/conduit_relay_mpi_io_adios.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_mpi_io_blueprint.hpp b/src/libs/relay/conduit_relay_mpi_io_blueprint.hpp index 264a995957b03dc4dc9297d964b1f7d645f7a1de..bbb511f7857f93d4b808b9777b7092ccf194c23b 100644 --- a/src/libs/relay/conduit_relay_mpi_io_blueprint.hpp +++ b/src/libs/relay/conduit_relay_mpi_io_blueprint.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_mpi_io_hdf5.hpp b/src/libs/relay/conduit_relay_mpi_io_hdf5.hpp index 86d0ac5f6cb82603ff6488f8cc45eafad1907f7b..eabc497b0e25ffbc6741a62d8f8eaebc8c19e24f 100644 --- a/src/libs/relay/conduit_relay_mpi_io_hdf5.hpp +++ b/src/libs/relay/conduit_relay_mpi_io_hdf5.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_mpi_io_identify_protocol.hpp b/src/libs/relay/conduit_relay_mpi_io_identify_protocol.hpp index 9c4fb56fbc5c26b40fb995e6dab8d847710182a6..06890699f118200f3abd3b393e5084d7310796ab 100644 --- a/src/libs/relay/conduit_relay_mpi_io_identify_protocol.hpp +++ b/src/libs/relay/conduit_relay_mpi_io_identify_protocol.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_mpi_io_silo.hpp b/src/libs/relay/conduit_relay_mpi_io_silo.hpp index 9fad8508efda97e9b5d8eaaf7475d47f2a6d2830..c6177e850435f28901a435773bc29a6754378c36 100644 --- a/src/libs/relay/conduit_relay_mpi_io_silo.hpp +++ b/src/libs/relay/conduit_relay_mpi_io_silo.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_silo.hpp b/src/libs/relay/conduit_relay_silo.hpp index 39e05ec9ca3b50fe69f16f65610af24f92c6c21f..8a0cd3aaae65b4acfc007e4782191a3160c5e1d5 100644 --- a/src/libs/relay/conduit_relay_silo.hpp +++ b/src/libs/relay/conduit_relay_silo.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_web.cpp b/src/libs/relay/conduit_relay_web.cpp index b590471a7478229b49ed5d87b458ad21fdcdbfc8..57fef0f3d6fa1afebf2d80a39eba3a57936521ea 100644 --- a/src/libs/relay/conduit_relay_web.cpp +++ b/src/libs/relay/conduit_relay_web.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_web.hpp b/src/libs/relay/conduit_relay_web.hpp index fd49c1e38b6f922bec0725b1d44db58246aea462..513abdd3d21083d65a7fdf3ca516d8eb00d1748d 100644 --- a/src/libs/relay/conduit_relay_web.hpp +++ b/src/libs/relay/conduit_relay_web.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_web_node_viewer_exe.cpp b/src/libs/relay/conduit_relay_web_node_viewer_exe.cpp index 4e67950dcf3a40d42cf720930e1525cea0f863c1..d4e083652e37e15d1bf0aac88c50b1739470e127 100644 --- a/src/libs/relay/conduit_relay_web_node_viewer_exe.cpp +++ b/src/libs/relay/conduit_relay_web_node_viewer_exe.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_web_node_viewer_server.cpp b/src/libs/relay/conduit_relay_web_node_viewer_server.cpp index 243fe5bb6d1f862639dae1de9f8a9f54fa1c7142..6a4486ecf539e01ba684c780a5028f129c8b36e3 100644 --- a/src/libs/relay/conduit_relay_web_node_viewer_server.cpp +++ b/src/libs/relay/conduit_relay_web_node_viewer_server.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/conduit_relay_web_node_viewer_server.hpp b/src/libs/relay/conduit_relay_web_node_viewer_server.hpp index 871958b9a043546b0d8ce8bbf17ba5474c6792bf..9b45c280216e109ff9b4c2a4d2f090d2508271b9 100644 --- a/src/libs/relay/conduit_relay_web_node_viewer_server.hpp +++ b/src/libs/relay/conduit_relay_web_node_viewer_server.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/fortran/conduit_relay_fortran.f90 b/src/libs/relay/fortran/conduit_relay_fortran.f90 index e823456a707c4e2bc24b8ad46fa651d6114fce0c..9a5685250cfb7e373989065ef3bafbe46b556c77 100644 --- a/src/libs/relay/fortran/conduit_relay_fortran.f90 +++ b/src/libs/relay/fortran/conduit_relay_fortran.f90 @@ -1,5 +1,5 @@ !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*! -!* Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +!* Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. !* !* Produced at the Lawrence Livermore National Laboratory !* diff --git a/src/libs/relay/python/CMakeLists.txt b/src/libs/relay/python/CMakeLists.txt index 1d8897e615764d28d4dff30c76d137d535e3d652..8aad40fa398e9748ca1d608aa985e56c32365967 100644 --- a/src/libs/relay/python/CMakeLists.txt +++ b/src/libs/relay/python/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/relay/python/conduit_relay_io_python.cpp b/src/libs/relay/python/conduit_relay_io_python.cpp index c7d71795a9d0e545dd542974c8c299ac5c584d8c..26633a52e4aed367c7888b38d7c75762ae59c169 100644 --- a/src/libs/relay/python/conduit_relay_io_python.cpp +++ b/src/libs/relay/python/conduit_relay_io_python.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/python/conduit_relay_python.cpp b/src/libs/relay/python/conduit_relay_python.cpp index a0b3355edeee36d0ccee38ecab880c077f045abc..7a3d95ac677359d22e9ef4c3a4ed6c6c7ed1f30f 100644 --- a/src/libs/relay/python/conduit_relay_python.cpp +++ b/src/libs/relay/python/conduit_relay_python.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/python/conduit_relay_python_exports.h.in b/src/libs/relay/python/conduit_relay_python_exports.h.in index a49f28305bf6648bd084154620af3938c181d00c..f594915315d0154d74db498f09a6003197e66d0f 100644 --- a/src/libs/relay/python/conduit_relay_python_exports.h.in +++ b/src/libs/relay/python/conduit_relay_python_exports.h.in @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/python/conduit_relay_web_python.cpp b/src/libs/relay/python/conduit_relay_web_python.cpp index e7066f591052278fdf896b78aee8fcd1244a7b22..5a2f6c766268ade2def70619a7b3ee64eadb32d8 100644 --- a/src/libs/relay/python/conduit_relay_web_python.cpp +++ b/src/libs/relay/python/conduit_relay_web_python.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/libs/relay/python/py_src/__init__.py b/src/libs/relay/python/py_src/__init__.py index b5b56f0fff9ab0134d2e43634dc30047971664d3..d00775ebb5d6762d4a0890eedd4e33412789eaa1 100644 --- a/src/libs/relay/python/py_src/__init__.py +++ b/src/libs/relay/python/py_src/__init__.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/relay/python/py_src/io/__init__.py b/src/libs/relay/python/py_src/io/__init__.py index f437fca87beb4911b535486568832fca488f1a06..b3cc1e7bf928cda70238fe7cc0baee34ae7898b9 100644 --- a/src/libs/relay/python/py_src/io/__init__.py +++ b/src/libs/relay/python/py_src/io/__init__.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/relay/python/py_src/web/__init__.py b/src/libs/relay/python/py_src/web/__init__.py index f8655d95ac509f7b4f7da26a83607b73fd56879c..cf5f9e00c2e5a030ce123f10b2b5bf45bf94f8e2 100644 --- a/src/libs/relay/python/py_src/web/__init__.py +++ b/src/libs/relay/python/py_src/web/__init__.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/relay/scripts/conduit_relay_entangle.py b/src/libs/relay/scripts/conduit_relay_entangle.py index ce558a05e313ebe8dff54559f5699aae38746966..622ff26dcc96d46b69e665fcf793dbd30314021c 100755 --- a/src/libs/relay/scripts/conduit_relay_entangle.py +++ b/src/libs/relay/scripts/conduit_relay_entangle.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/relay/web_clients/node_viewer/index.html b/src/libs/relay/web_clients/node_viewer/index.html index 65f76893a8ace0a23c4e29a7fc42d1f171a8bf21..bf09f77a3d183d4a67cd0f1d65889a030776b680 100644 --- a/src/libs/relay/web_clients/node_viewer/index.html +++ b/src/libs/relay/web_clients/node_viewer/index.html @@ -1,6 +1,6 @@ <!-- ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/relay/web_clients/node_viewer/resources/launcher.js b/src/libs/relay/web_clients/node_viewer/resources/launcher.js index 4faeafddaf907199c71f913c3cb20e5d253dbb81..f009df4bb6f485a9f30baf0645be19302e43a345 100644 --- a/src/libs/relay/web_clients/node_viewer/resources/launcher.js +++ b/src/libs/relay/web_clients/node_viewer/resources/launcher.js @@ -1,6 +1,6 @@ /* ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/relay/web_clients/node_viewer/resources/search-table.js b/src/libs/relay/web_clients/node_viewer/resources/search-table.js index f38ad8c378fe017b238292ccd5ff9655bf39b208..41e49999a4df253b95d72c9e3688fa36e7631e6a 100644 --- a/src/libs/relay/web_clients/node_viewer/resources/search-table.js +++ b/src/libs/relay/web_clients/node_viewer/resources/search-table.js @@ -1,6 +1,6 @@ /* ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/relay/web_clients/node_viewer/resources/tree.js b/src/libs/relay/web_clients/node_viewer/resources/tree.js index 9889f939c7295018451e8f754b1701219049708d..fcc561b89f33986e1175899da5a82e73887e3f80 100644 --- a/src/libs/relay/web_clients/node_viewer/resources/tree.js +++ b/src/libs/relay/web_clients/node_viewer/resources/tree.js @@ -1,6 +1,6 @@ /* ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/relay/web_clients/node_viewer/resources/treemap.js b/src/libs/relay/web_clients/node_viewer/resources/treemap.js index e4a37314bddb82f086ed5eb024811f4b4bf8de50..3946031ceeb9040e29ea0e9d22a8e1c846e8f8ba 100644 --- a/src/libs/relay/web_clients/node_viewer/resources/treemap.js +++ b/src/libs/relay/web_clients/node_viewer/resources/treemap.js @@ -1,6 +1,6 @@ /* ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/relay/web_clients/node_viewer/resources/value-table.js b/src/libs/relay/web_clients/node_viewer/resources/value-table.js index 7bfa881e41e25146c5257394d4d4eb106895968a..28f775317f274ebc4c412ee40787cfed38cdace4 100644 --- a/src/libs/relay/web_clients/node_viewer/resources/value-table.js +++ b/src/libs/relay/web_clients/node_viewer/resources/value-table.js @@ -1,6 +1,6 @@ /* ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/relay/web_clients/node_viewer/resources/visualizer-utils.js b/src/libs/relay/web_clients/node_viewer/resources/visualizer-utils.js index dffa79be06202c732730fe6b8c0f0346fdcdc2e6..f24a6eb75c98f4fcd73e69f02aa52b5b52b28dc2 100644 --- a/src/libs/relay/web_clients/node_viewer/resources/visualizer-utils.js +++ b/src/libs/relay/web_clients/node_viewer/resources/visualizer-utils.js @@ -1,6 +1,6 @@ /* ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/relay/web_clients/node_viewer/resources/visualizer.js b/src/libs/relay/web_clients/node_viewer/resources/visualizer.js index 28039b5d88e985d94e11525e18c90d1c0f97aa13..2b6bbb7f44da3d33cd1badeb79a16bbf45ea01a0 100644 --- a/src/libs/relay/web_clients/node_viewer/resources/visualizer.js +++ b/src/libs/relay/web_clients/node_viewer/resources/visualizer.js @@ -1,6 +1,6 @@ /* ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/relay/web_clients/node_viewer/visualizer.css b/src/libs/relay/web_clients/node_viewer/visualizer.css index 9deda07aeaf3c144e7546784f20bb5f469c4affb..55f80c3b738f869d6d40be780b06c9e4fde2c522 100644 --- a/src/libs/relay/web_clients/node_viewer/visualizer.css +++ b/src/libs/relay/web_clients/node_viewer/visualizer.css @@ -1,6 +1,6 @@ /* ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/relay/web_clients/wsock_test/index.html b/src/libs/relay/web_clients/wsock_test/index.html index 8d22fe2582e60a527c621b8e63c4886c3d501d1e..1cc06b2b0ee26dfa18ebb27a479d6d75934e395d 100644 --- a/src/libs/relay/web_clients/wsock_test/index.html +++ b/src/libs/relay/web_clients/wsock_test/index.html @@ -1,6 +1,6 @@ <!-- ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/libs/relay/web_clients/wsock_test/resources/wsock_test.js b/src/libs/relay/web_clients/wsock_test/resources/wsock_test.js index 664c014e612186879e3162ea3ad0ffb8fd4d979b..e5c84ea297e76b52fd2acc3197b1f163e2acc246 100644 --- a/src/libs/relay/web_clients/wsock_test/resources/wsock_test.js +++ b/src/libs/relay/web_clients/wsock_test/resources/wsock_test.js @@ -1,6 +1,6 @@ /* ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/CMakeLists.txt b/src/tests/CMakeLists.txt index 63a81c715fc998e6b3f85003249c8d5e0319f974..06a1e303e9a1a6770e2d7d763a79eab9890cd13c 100644 --- a/src/tests/CMakeLists.txt +++ b/src/tests/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/blueprint/CMakeLists.txt b/src/tests/blueprint/CMakeLists.txt index 2a45a42d13c51b9636bedac9ebeb9aa67718b155..5a80e634c652f7ea8fe9b1827c90af6f2f2f10ee 100644 --- a/src/tests/blueprint/CMakeLists.txt +++ b/src/tests/blueprint/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/blueprint/c/CMakeLists.txt b/src/tests/blueprint/c/CMakeLists.txt index 60a7b2d1783473cbd1aae5054eeeb631c38f9322..2b8572083911ef172d9d430a59854a66145fcc5f 100644 --- a/src/tests/blueprint/c/CMakeLists.txt +++ b/src/tests/blueprint/c/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/blueprint/c/t_c_blueprint_mcarray.cpp b/src/tests/blueprint/c/t_c_blueprint_mcarray.cpp index 546e6c9d184f196bc39a23df106bd5d93332c09b..63af778dc96a5b697595dde280768339c111c31c 100644 --- a/src/tests/blueprint/c/t_c_blueprint_mcarray.cpp +++ b/src/tests/blueprint/c/t_c_blueprint_mcarray.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/blueprint/c/t_c_blueprint_mesh.cpp b/src/tests/blueprint/c/t_c_blueprint_mesh.cpp index 98badbc124b2dff6e496deb2346dac4b4c799eb5..a0831a5cb4a020da3781e81cd9a39cfac94c85d4 100644 --- a/src/tests/blueprint/c/t_c_blueprint_mesh.cpp +++ b/src/tests/blueprint/c/t_c_blueprint_mesh.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/blueprint/c/t_c_blueprint_smoke.cpp b/src/tests/blueprint/c/t_c_blueprint_smoke.cpp index 73817fa5170bf6e271e7c32ac4aae433f94f43db..52add44ee229c1761c9e963602361e1e9c903a69 100644 --- a/src/tests/blueprint/c/t_c_blueprint_smoke.cpp +++ b/src/tests/blueprint/c/t_c_blueprint_smoke.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/blueprint/fortran/CMakeLists.txt b/src/tests/blueprint/fortran/CMakeLists.txt index a7238f408e331f27af7fb2d2c1650316eeef807c..1851a59d1e261386adfc9de1727dad3a99d0dcd2 100644 --- a/src/tests/blueprint/fortran/CMakeLists.txt +++ b/src/tests/blueprint/fortran/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/blueprint/fortran/t_f_blueprint_mcarray.f90 b/src/tests/blueprint/fortran/t_f_blueprint_mcarray.f90 index 59b9be482cb7b0b4792ceacc99d880152f7785e0..f33b9e8a4eea929ea2688195c64f972eca8ce0df 100644 --- a/src/tests/blueprint/fortran/t_f_blueprint_mcarray.f90 +++ b/src/tests/blueprint/fortran/t_f_blueprint_mcarray.f90 @@ -1,5 +1,5 @@ !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*! -!* Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +!* Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. !* !* Produced at the Lawrence Livermore National Laboratory !* diff --git a/src/tests/blueprint/fortran/t_f_blueprint_mesh.f90 b/src/tests/blueprint/fortran/t_f_blueprint_mesh.f90 index 9a34e0f837e60aa6a206a636e50b598906091839..853dd484b92164abf9db8081fe74875a1fed11c7 100644 --- a/src/tests/blueprint/fortran/t_f_blueprint_mesh.f90 +++ b/src/tests/blueprint/fortran/t_f_blueprint_mesh.f90 @@ -1,5 +1,5 @@ !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*! -!* Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +!* Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. !* !* Produced at the Lawrence Livermore National Laboratory !* diff --git a/src/tests/blueprint/fortran/t_f_blueprint_smoke.f90 b/src/tests/blueprint/fortran/t_f_blueprint_smoke.f90 index 4f12932841024ddcd21a146dad98cc96b1bfb638..26c955513d2db9463d10bcf8f6590aaaeea424cc 100644 --- a/src/tests/blueprint/fortran/t_f_blueprint_smoke.f90 +++ b/src/tests/blueprint/fortran/t_f_blueprint_smoke.f90 @@ -1,5 +1,5 @@ !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*! -!* Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +!* Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. !* !* Produced at the Lawrence Livermore National Laboratory !* diff --git a/src/tests/blueprint/python/CMakeLists.txt b/src/tests/blueprint/python/CMakeLists.txt index 683a1b4bc002bc4475751f5445b880a55f185b2d..f89cd205820b6f3479530371bb98d6dda06c3626 100644 --- a/src/tests/blueprint/python/CMakeLists.txt +++ b/src/tests/blueprint/python/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/blueprint/python/t_python_blueprint_mcarray.py b/src/tests/blueprint/python/t_python_blueprint_mcarray.py index fbd7bdb17e71c4b8ada9b451bf9b6d4ef2b45553..118e35aa797317722fd2a085d6a6af6a76ad51a3 100644 --- a/src/tests/blueprint/python/t_python_blueprint_mcarray.py +++ b/src/tests/blueprint/python/t_python_blueprint_mcarray.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/blueprint/python/t_python_blueprint_mesh.py b/src/tests/blueprint/python/t_python_blueprint_mesh.py index 7fc552d40f2e31a4b1a3c226e4800adf6c76bb23..a03bff0fca6b5954caed6809626e732dbcfa3d09 100644 --- a/src/tests/blueprint/python/t_python_blueprint_mesh.py +++ b/src/tests/blueprint/python/t_python_blueprint_mesh.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/blueprint/python/t_python_blueprint_smoke.py b/src/tests/blueprint/python/t_python_blueprint_smoke.py index a59a0927a5d8276750987d726e644aca0baf14e8..135e760bde421bb246cac359437ad027a3f45457 100644 --- a/src/tests/blueprint/python/t_python_blueprint_smoke.py +++ b/src/tests/blueprint/python/t_python_blueprint_smoke.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/conduit/CMakeLists.txt b/src/tests/conduit/CMakeLists.txt index 5453f2621958df580036317b3b4d31a73070ba3d..5d5b241208aa2a08f6e5aee9b78c66c0c25b8d91 100644 --- a/src/tests/conduit/CMakeLists.txt +++ b/src/tests/conduit/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/conduit/c/CMakeLists.txt b/src/tests/conduit/c/CMakeLists.txt index 3ec0dcdb1cf1a24f71ba148c51bde9ad718e8e37..5d162266e8ab34155856b5d20266841511dab957 100644 --- a/src/tests/conduit/c/CMakeLists.txt +++ b/src/tests/conduit/c/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/conduit/c/t_c_conduit_node.cpp b/src/tests/conduit/c/t_c_conduit_node.cpp index c7a70d829033e9b3847806e30a410714a02c61d4..7bcf0d225ec3cd6be190f7114ef6f1cfccf52346 100644 --- a/src/tests/conduit/c/t_c_conduit_node.cpp +++ b/src/tests/conduit/c/t_c_conduit_node.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/c/t_c_conduit_node_set.cpp b/src/tests/conduit/c/t_c_conduit_node_set.cpp index 3c1ed655a7e450b337991e3f6852eb57efd787d7..dd6ba582705f4a3f708bad9c98719f5dba1d791b 100644 --- a/src/tests/conduit/c/t_c_conduit_node_set.cpp +++ b/src/tests/conduit/c/t_c_conduit_node_set.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/c/t_c_conduit_smoke.cpp b/src/tests/conduit/c/t_c_conduit_smoke.cpp index ba615f6499aa576a492a48668866c00c90ac8f46..62ad67b24735da21ca208685baf3b612c05cadfc 100644 --- a/src/tests/conduit/c/t_c_conduit_smoke.cpp +++ b/src/tests/conduit/c/t_c_conduit_smoke.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/fortran/CMakeLists.txt b/src/tests/conduit/fortran/CMakeLists.txt index ddc240f4c7f8eec0e47816ff85109e0b25f8b117..b36fc050fca1e59ac66a1f96da4991c85381b6b8 100644 --- a/src/tests/conduit/fortran/CMakeLists.txt +++ b/src/tests/conduit/fortran/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/conduit/fortran/t_f_conduit_node.f90 b/src/tests/conduit/fortran/t_f_conduit_node.f90 index e10e2289a34a2bb3483cd9fea179deff81a49ffe..0fbed2708658f14a24d817ae880bd4a99c0a132e 100644 --- a/src/tests/conduit/fortran/t_f_conduit_node.f90 +++ b/src/tests/conduit/fortran/t_f_conduit_node.f90 @@ -1,5 +1,5 @@ !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*! -!* Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +!* Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. !* !* Produced at the Lawrence Livermore National Laboratory !* diff --git a/src/tests/conduit/fortran/t_f_conduit_node_char8_str.f90 b/src/tests/conduit/fortran/t_f_conduit_node_char8_str.f90 index 33b702987010de4cf6f0bbb2a08e9ca888287285..ecce9463537c7c9f98d6a0c94479c895eb643688 100644 --- a/src/tests/conduit/fortran/t_f_conduit_node_char8_str.f90 +++ b/src/tests/conduit/fortran/t_f_conduit_node_char8_str.f90 @@ -1,5 +1,5 @@ !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*! -!* Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +!* Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. !* !* Produced at the Lawrence Livermore National Laboratory !* diff --git a/src/tests/conduit/fortran/t_f_conduit_node_float.f90 b/src/tests/conduit/fortran/t_f_conduit_node_float.f90 index 43cc188f1aea80eef9bbdb5b81912116ae34468f..a25252b620f7045d8f62188d54aea449ad209edc 100644 --- a/src/tests/conduit/fortran/t_f_conduit_node_float.f90 +++ b/src/tests/conduit/fortran/t_f_conduit_node_float.f90 @@ -1,5 +1,5 @@ !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*! -!* Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +!* Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. !* !* Produced at the Lawrence Livermore National Laboratory !* diff --git a/src/tests/conduit/fortran/t_f_conduit_node_int.f90 b/src/tests/conduit/fortran/t_f_conduit_node_int.f90 index e9bf6f05d4cb4fc497e185e686d24609f07e55d8..7429bc1f19a0214a0c3d5328c97a6c3935af015d 100644 --- a/src/tests/conduit/fortran/t_f_conduit_node_int.f90 +++ b/src/tests/conduit/fortran/t_f_conduit_node_int.f90 @@ -1,5 +1,5 @@ !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*! -!* Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +!* Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. !* !* Produced at the Lawrence Livermore National Laboratory !* diff --git a/src/tests/conduit/fortran/t_f_conduit_node_obj.f90 b/src/tests/conduit/fortran/t_f_conduit_node_obj.f90 index ba3f8ae3baf9f5575a3ddf6460a5d2d8ef3ef7d2..babc6968405ee11e58c11f4c03a9e3ca1902e5dc 100644 --- a/src/tests/conduit/fortran/t_f_conduit_node_obj.f90 +++ b/src/tests/conduit/fortran/t_f_conduit_node_obj.f90 @@ -1,5 +1,5 @@ !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*! -!* Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +!* Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. !* !* Produced at the Lawrence Livermore National Laboratory !* diff --git a/src/tests/conduit/fortran/t_f_conduit_smoke.f90 b/src/tests/conduit/fortran/t_f_conduit_smoke.f90 index ba012a46dc53ebd39c07bc9d4bd00fc79579fc25..4e4fba1becb311c96da5e71106b8bd10c542e97a 100644 --- a/src/tests/conduit/fortran/t_f_conduit_smoke.f90 +++ b/src/tests/conduit/fortran/t_f_conduit_smoke.f90 @@ -1,5 +1,5 @@ !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*! -!* Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +!* Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. !* !* Produced at the Lawrence Livermore National Laboratory !* diff --git a/src/tests/conduit/fortran/t_f_type_sizes.f90 b/src/tests/conduit/fortran/t_f_type_sizes.f90 index aeb1543759f2eac2b47edee578c8a112a9626322..f86ca3c1ce8beb5d902598587210e5b567bca1ad 100644 --- a/src/tests/conduit/fortran/t_f_type_sizes.f90 +++ b/src/tests/conduit/fortran/t_f_type_sizes.f90 @@ -1,5 +1,5 @@ !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*! -!* Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +!* Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. !* !* Produced at the Lawrence Livermore National Laboratory !* diff --git a/src/tests/conduit/python/CMakeLists.txt b/src/tests/conduit/python/CMakeLists.txt index 1c73bd27b02f6420a940869ebaf910c0b1188ec6..8175bcc52c781d2d0cc9ef3e4a5e2ccf3fd98d83 100644 --- a/src/tests/conduit/python/CMakeLists.txt +++ b/src/tests/conduit/python/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/conduit/python/t_python_conduit_datatype.py b/src/tests/conduit/python/t_python_conduit_datatype.py index da591b0cb080bc2f3341503478c5680d05498d57..d48712ec098af09c468ff2e4f0cb0e760e499c8c 100644 --- a/src/tests/conduit/python/t_python_conduit_datatype.py +++ b/src/tests/conduit/python/t_python_conduit_datatype.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/conduit/python/t_python_conduit_endianness.py b/src/tests/conduit/python/t_python_conduit_endianness.py index 3398cade997cb1279e480bbb5816e310bb151727..e7ceb39c39bb6fe51507f334956d40ec63ae0ad2 100644 --- a/src/tests/conduit/python/t_python_conduit_endianness.py +++ b/src/tests/conduit/python/t_python_conduit_endianness.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/conduit/python/t_python_conduit_generator.py b/src/tests/conduit/python/t_python_conduit_generator.py index 0a43a1a8ad26b9ba37b33c4f3199a406dac1fae0..e75d398e1215d1e14fe5ccccc627451f459b8a2f 100644 --- a/src/tests/conduit/python/t_python_conduit_generator.py +++ b/src/tests/conduit/python/t_python_conduit_generator.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/conduit/python/t_python_conduit_node_iterator.py b/src/tests/conduit/python/t_python_conduit_node_iterator.py index 21f39fb80151492506be1146e3f125700c7d4816..9fc0a01b1f87b5e13a0e5557df0adb4fabb21f54 100644 --- a/src/tests/conduit/python/t_python_conduit_node_iterator.py +++ b/src/tests/conduit/python/t_python_conduit_node_iterator.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/conduit/python/t_python_conduit_schema.py b/src/tests/conduit/python/t_python_conduit_schema.py index 30da27d490a191e23db3bb8d96edc04e63643d4a..0141d11aa70dd903d76ab8cc21cede17ee215531 100644 --- a/src/tests/conduit/python/t_python_conduit_schema.py +++ b/src/tests/conduit/python/t_python_conduit_schema.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/conduit/python/t_python_conduit_smoke.py b/src/tests/conduit/python/t_python_conduit_smoke.py index 9095ff4ad21d65c059486ba272ca2e09238a180c..139158c55e160ce9ea643ce8246aec56ed563bf9 100644 --- a/src/tests/conduit/python/t_python_conduit_smoke.py +++ b/src/tests/conduit/python/t_python_conduit_smoke.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/conduit/t_conduit_array.cpp b/src/tests/conduit/t_conduit_array.cpp index 65128551b1f7af645d4abd038c281bb90d7fbdb8..69fde04a99872767588d4a969f31f786afad92c2 100644 --- a/src/tests/conduit/t_conduit_array.cpp +++ b/src/tests/conduit/t_conduit_array.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_char8_str.cpp b/src/tests/conduit/t_conduit_char8_str.cpp index cc1342b4b4e7898a444f791aac8630d431ce9128..d35c26ea2618c0ec2500342c9eb298b39129c1f0 100644 --- a/src/tests/conduit/t_conduit_char8_str.cpp +++ b/src/tests/conduit/t_conduit_char8_str.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_datatype_tests.cpp b/src/tests/conduit/t_conduit_datatype_tests.cpp index f65bf65ad93e978f4b385283e6bd2573a0f049a2..8a97d1a17f0e3b0f0956ca4de098d695bbad1d1b 100644 --- a/src/tests/conduit/t_conduit_datatype_tests.cpp +++ b/src/tests/conduit/t_conduit_datatype_tests.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_endianness.cpp b/src/tests/conduit/t_conduit_endianness.cpp index 63ce5bec916039a1bec7b2f152357f6466bd41d5..3ac872482e3e9e8fc1876410eac897a4ea1ea13c 100644 --- a/src/tests/conduit/t_conduit_endianness.cpp +++ b/src/tests/conduit/t_conduit_endianness.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_generator.cpp b/src/tests/conduit/t_conduit_generator.cpp index c6014aab3696203799dcda865b0ec44dc33b2e82..cc13ef3135c0131be2950655a78870647567f83a 100644 --- a/src/tests/conduit/t_conduit_generator.cpp +++ b/src/tests/conduit/t_conduit_generator.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_json.cpp b/src/tests/conduit/t_conduit_json.cpp index 0825adba348e5eed1444ad810f26074341104fae..96b37c9eb90b0e242b4536452786ba2b25ed3e74 100644 --- a/src/tests/conduit/t_conduit_json.cpp +++ b/src/tests/conduit/t_conduit_json.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_json_sanitize.cpp b/src/tests/conduit/t_conduit_json_sanitize.cpp index afae4b6df1ce262af94bc14a884c479c8a9ef0fc..73e357b6ddc46c87f3304f53e6ce626bfc62b837 100644 --- a/src/tests/conduit/t_conduit_json_sanitize.cpp +++ b/src/tests/conduit/t_conduit_json_sanitize.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_list_of.cpp b/src/tests/conduit/t_conduit_list_of.cpp index d28748d69a7729cf0aca10b25156879d9997196e..2f3212c1c8230082519f69283342cff60370ddbf 100644 --- a/src/tests/conduit/t_conduit_list_of.cpp +++ b/src/tests/conduit/t_conduit_list_of.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_node.cpp b/src/tests/conduit/t_conduit_node.cpp index fe31fe6a542e825729462e9d2ec423cc04a03ae0..d880733f4027cb3a7d833141698240774b860ba7 100644 --- a/src/tests/conduit/t_conduit_node.cpp +++ b/src/tests/conduit/t_conduit_node.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_node_binary_io.cpp b/src/tests/conduit/t_conduit_node_binary_io.cpp index e5b6e9b7fcabcc4ef2eb5278ab78d3852d5f7d9f..36d9f0435f5c5d8a3bdd0b2078296a0eeb1af1c8 100644 --- a/src/tests/conduit/t_conduit_node_binary_io.cpp +++ b/src/tests/conduit/t_conduit_node_binary_io.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_node_compact.cpp b/src/tests/conduit/t_conduit_node_compact.cpp index 979e81acc538e29934b65cd9a0e99eedf4c923d3..d137bf79b88ed64af114f9b8ca6ef1580a62b9f2 100644 --- a/src/tests/conduit/t_conduit_node_compact.cpp +++ b/src/tests/conduit/t_conduit_node_compact.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_node_info.cpp b/src/tests/conduit/t_conduit_node_info.cpp index 9ade6c73ac44af603b363436befd0ee42a3bac8d..83f9f85cc54114ca6263912da0ddefee468b30df 100644 --- a/src/tests/conduit/t_conduit_node_info.cpp +++ b/src/tests/conduit/t_conduit_node_info.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_node_iterator.cpp b/src/tests/conduit/t_conduit_node_iterator.cpp index 84d709e9157d2914189a88cd70d5b1b58d5d5b53..d70bcc2b9f61ab1754453589d57b8274828d7582 100644 --- a/src/tests/conduit/t_conduit_node_iterator.cpp +++ b/src/tests/conduit/t_conduit_node_iterator.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_node_parent.cpp b/src/tests/conduit/t_conduit_node_parent.cpp index 1d910704ba3fe565c220227c2f5b3cffc6b0d785..c7e0ff736df85e2bb918d161344f2b51aa3eeb2a 100644 --- a/src/tests/conduit/t_conduit_node_parent.cpp +++ b/src/tests/conduit/t_conduit_node_parent.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_node_paths.cpp b/src/tests/conduit/t_conduit_node_paths.cpp index 3ae2e77f0083f676acb56e959e3b26ce99aef1dc..e5fe3d778861356ce487d31905db1095c45a5c69 100644 --- a/src/tests/conduit/t_conduit_node_paths.cpp +++ b/src/tests/conduit/t_conduit_node_paths.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_node_save_load.cpp b/src/tests/conduit/t_conduit_node_save_load.cpp index e5068b4be052b9d89511761e43ca2db1d8a65633..06f92c7bd2fffbc13aa31a5a024855c07aae0273 100644 --- a/src/tests/conduit/t_conduit_node_save_load.cpp +++ b/src/tests/conduit/t_conduit_node_save_load.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_node_set.cpp b/src/tests/conduit/t_conduit_node_set.cpp index 77336ce361b483054e4434a66ca733c69a87346d..c324373555d1726b8ad883d09870f5493f8108fb 100644 --- a/src/tests/conduit/t_conduit_node_set.cpp +++ b/src/tests/conduit/t_conduit_node_set.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_node_to_array.cpp b/src/tests/conduit/t_conduit_node_to_array.cpp index 364f75c0547db9d79c9d4abf8f61623edc8db922..32e4fd626410d47fd4c0a6c8ffad818608860038 100644 --- a/src/tests/conduit/t_conduit_node_to_array.cpp +++ b/src/tests/conduit/t_conduit_node_to_array.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_node_to_value.cpp b/src/tests/conduit/t_conduit_node_to_value.cpp index 8cf18c481f98482f0b992d57f36f0f31a24f3073..1a34c8eedb4cdc1514cefbcaf27b37ec29fe6d40 100644 --- a/src/tests/conduit/t_conduit_node_to_value.cpp +++ b/src/tests/conduit/t_conduit_node_to_value.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_node_update.cpp b/src/tests/conduit/t_conduit_node_update.cpp index 36802092510a6177138507dce688ded662f53d72..957249b045126ff5e0b11a1927ed0bee27dfea45 100644 --- a/src/tests/conduit/t_conduit_node_update.cpp +++ b/src/tests/conduit/t_conduit_node_update.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_serialize.cpp b/src/tests/conduit/t_conduit_serialize.cpp index becff1fe242e963b669f78cedf5213ad359eef24..437ab3317eec5d4668a98e26b19749afe7270b60 100644 --- a/src/tests/conduit/t_conduit_serialize.cpp +++ b/src/tests/conduit/t_conduit_serialize.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_smoke.cpp b/src/tests/conduit/t_conduit_smoke.cpp index 0c07c406fc4ab2f86944780335ea066db571dc3d..4509e3fe1fd6ffc3f4dcb3ed4824f80f3cb39cef 100644 --- a/src/tests/conduit/t_conduit_smoke.cpp +++ b/src/tests/conduit/t_conduit_smoke.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_to_string.cpp b/src/tests/conduit/t_conduit_to_string.cpp index 5c039c2a95c28e5a07f4c5b9b2c37ba4ed8b2056..ae47f1c53f602982d2da9d7c6934e9367bd96e10 100644 --- a/src/tests/conduit/t_conduit_to_string.cpp +++ b/src/tests/conduit/t_conduit_to_string.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/conduit/t_conduit_utils.cpp b/src/tests/conduit/t_conduit_utils.cpp index c1cc2cc3cc7ab3cfbc4bbdd960740fdc8b9f2875..1658192bac8a3c9303d2a1d81490b07008f89214 100644 --- a/src/tests/conduit/t_conduit_utils.cpp +++ b/src/tests/conduit/t_conduit_utils.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/docs/CMakeLists.txt b/src/tests/docs/CMakeLists.txt index f5b76f5f6ba74806dd51061ea258baee55e926c1..79787e61812d1ea9c81a41f5cda2b2071894065b 100644 --- a/src/tests/docs/CMakeLists.txt +++ b/src/tests/docs/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/docs/t_conduit_docs_blueprint_demos.cpp b/src/tests/docs/t_conduit_docs_blueprint_demos.cpp index ff7383f7f413181174a48a223088f6535dcf5738..8ee1fadcc148c6bf58b17adef1894d2ab90b0a46 100644 --- a/src/tests/docs/t_conduit_docs_blueprint_demos.cpp +++ b/src/tests/docs/t_conduit_docs_blueprint_demos.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/docs/t_conduit_docs_blueprint_examples.cpp b/src/tests/docs/t_conduit_docs_blueprint_examples.cpp index f2da5953d458dc8e4cc23a7ef32d5f3371cc6388..23c5d2567b68be213a69e461d709695c7f9bc21f 100644 --- a/src/tests/docs/t_conduit_docs_blueprint_examples.cpp +++ b/src/tests/docs/t_conduit_docs_blueprint_examples.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/docs/t_conduit_docs_relay_io_generic_examples.cpp b/src/tests/docs/t_conduit_docs_relay_io_generic_examples.cpp index fbf6b4d7433ab250025fe173eb4ec9c1f6e0e64e..362b56e9fe043574446bf4f8f041136b2270856e 100644 --- a/src/tests/docs/t_conduit_docs_relay_io_generic_examples.cpp +++ b/src/tests/docs/t_conduit_docs_relay_io_generic_examples.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/docs/t_conduit_docs_relay_io_handle_examples.cpp b/src/tests/docs/t_conduit_docs_relay_io_handle_examples.cpp index cdea48a6ce537ccdd053b3a60357cb2136a466ae..5e16e74c59320eb10494c7f039fdf27b9e6b697f 100644 --- a/src/tests/docs/t_conduit_docs_relay_io_handle_examples.cpp +++ b/src/tests/docs/t_conduit_docs_relay_io_handle_examples.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/docs/t_conduit_docs_relay_io_hdf5_examples.cpp b/src/tests/docs/t_conduit_docs_relay_io_hdf5_examples.cpp index bd8235d4cebd5935e202548253a5628aaff108fd..f3012c3ab3a5399e0965964246b293737d654d69 100644 --- a/src/tests/docs/t_conduit_docs_relay_io_hdf5_examples.cpp +++ b/src/tests/docs/t_conduit_docs_relay_io_hdf5_examples.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/docs/t_conduit_docs_tutorial_basics.cpp b/src/tests/docs/t_conduit_docs_tutorial_basics.cpp index 9cddb8a49308af3762c3f3e42bf7082261a38505..ab4e1546e58330586ac023062750e95b372481ee 100644 --- a/src/tests/docs/t_conduit_docs_tutorial_basics.cpp +++ b/src/tests/docs/t_conduit_docs_tutorial_basics.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/docs/t_conduit_docs_tutorial_errors.cpp b/src/tests/docs/t_conduit_docs_tutorial_errors.cpp index fa75076aa868e7ebac324a2325211b90a69b0247..93e91c86f2f75b6840cdcff1d91c75567bef76f2 100644 --- a/src/tests/docs/t_conduit_docs_tutorial_errors.cpp +++ b/src/tests/docs/t_conduit_docs_tutorial_errors.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/docs/t_conduit_docs_tutorial_json.cpp b/src/tests/docs/t_conduit_docs_tutorial_json.cpp index 305fc8d6cc39db646fb8c4cefdddb04c7ec6c775..64c389eba10dab48d2c5c083e191d78398c8b0db 100644 --- a/src/tests/docs/t_conduit_docs_tutorial_json.cpp +++ b/src/tests/docs/t_conduit_docs_tutorial_json.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/docs/t_conduit_docs_tutorial_numeric.cpp b/src/tests/docs/t_conduit_docs_tutorial_numeric.cpp index 61fd263fc506fab0192d4edf48e1ee0863c680a4..b292a7bb807f976bd83077066b4d7eda42113426 100644 --- a/src/tests/docs/t_conduit_docs_tutorial_numeric.cpp +++ b/src/tests/docs/t_conduit_docs_tutorial_numeric.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/docs/t_conduit_docs_tutorial_ownership.cpp b/src/tests/docs/t_conduit_docs_tutorial_ownership.cpp index 4bef5a68a0a68e0e0ca70bc1c5c226c796209d1e..67f25bd21653d34d224f42e9d74b340bc26a92f5 100644 --- a/src/tests/docs/t_conduit_docs_tutorial_ownership.cpp +++ b/src/tests/docs/t_conduit_docs_tutorial_ownership.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/docs/t_conduit_docs_tutorial_python_basics.py b/src/tests/docs/t_conduit_docs_tutorial_python_basics.py index af1da0946e06adde7a823198ef9d12a46a90d26c..027d9654bbe698527481a73116c1463a1107f527 100644 --- a/src/tests/docs/t_conduit_docs_tutorial_python_basics.py +++ b/src/tests/docs/t_conduit_docs_tutorial_python_basics.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/docs/t_conduit_docs_tutorial_python_json.py b/src/tests/docs/t_conduit_docs_tutorial_python_json.py index b7db1d36a167eeb95fe8407cbb0433734e5b5963..4d7d3590905c2b9710db74fbf101c3fbe81c9fa1 100644 --- a/src/tests/docs/t_conduit_docs_tutorial_python_json.py +++ b/src/tests/docs/t_conduit_docs_tutorial_python_json.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/docs/t_conduit_docs_tutorial_python_numeric.py b/src/tests/docs/t_conduit_docs_tutorial_python_numeric.py index 929bafc77395d41e7bfcb14b9752ac1b5c046377..0fc147979392cc32213c2b2c22e73938a6ea467b 100644 --- a/src/tests/docs/t_conduit_docs_tutorial_python_numeric.py +++ b/src/tests/docs/t_conduit_docs_tutorial_python_numeric.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/docs/t_conduit_docs_tutorial_python_ownership.py b/src/tests/docs/t_conduit_docs_tutorial_python_ownership.py index 9b5d201bbeedaf27fbca6448da5cf0f1614b7421..519848a233743d7a99155f15772761006fb62182 100644 --- a/src/tests/docs/t_conduit_docs_tutorial_python_ownership.py +++ b/src/tests/docs/t_conduit_docs_tutorial_python_ownership.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/docs/t_conduit_docs_tutorial_python_relay_io_handle_examples.py b/src/tests/docs/t_conduit_docs_tutorial_python_relay_io_handle_examples.py index 9203de2c0212bf38cd22ff1efc95cf6477b6ede3..d444054f2f7faf2fbc2814fe2fbb13e688d46b68 100644 --- a/src/tests/docs/t_conduit_docs_tutorial_python_relay_io_handle_examples.py +++ b/src/tests/docs/t_conduit_docs_tutorial_python_relay_io_handle_examples.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/relay/CMakeLists.txt b/src/tests/relay/CMakeLists.txt index 60792ae912d5e94cd40c141a211593d8d4883f9a..fa5ae245caeee3965ecaaa6f9c874b357e9f4e0a 100644 --- a/src/tests/relay/CMakeLists.txt +++ b/src/tests/relay/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/relay/adios_test_utils.hpp b/src/tests/relay/adios_test_utils.hpp index bd8fb2ee8f774999c6fc9034a790dc77381433a6..d55ee04251f367b99cca145c86aa916c715a424a 100644 --- a/src/tests/relay/adios_test_utils.hpp +++ b/src/tests/relay/adios_test_utils.hpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/relay/c/CMakeLists.txt b/src/tests/relay/c/CMakeLists.txt index 4ce176873f9d65af77847052d147503116dc92b3..04bf7309bb853cf8fc8f38c065def8620b65d922 100644 --- a/src/tests/relay/c/CMakeLists.txt +++ b/src/tests/relay/c/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/relay/c/t_c_relay_io_adios.cpp b/src/tests/relay/c/t_c_relay_io_adios.cpp index 78fac694f0f1903c656eea577237779eb242a49f..069c7dfe97aff922767fe77816841747609c1a2c 100644 --- a/src/tests/relay/c/t_c_relay_io_adios.cpp +++ b/src/tests/relay/c/t_c_relay_io_adios.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/relay/c/t_c_relay_mpi_io_adios.cpp b/src/tests/relay/c/t_c_relay_mpi_io_adios.cpp index c1426050596352d035c7ba87c846a4f7e67129ca..8c5d0f5d7170a389da6cf19414a7342a4346e74b 100644 --- a/src/tests/relay/c/t_c_relay_mpi_io_adios.cpp +++ b/src/tests/relay/c/t_c_relay_mpi_io_adios.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/relay/c/t_c_relay_smoke.cpp b/src/tests/relay/c/t_c_relay_smoke.cpp index a15b4fa7cf4fd1b62db64e157e70e868591abc48..46a73d2043d4a0962c25b0ddf5ba11752022f68b 100644 --- a/src/tests/relay/c/t_c_relay_smoke.cpp +++ b/src/tests/relay/c/t_c_relay_smoke.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/relay/fortran/CMakeLists.txt b/src/tests/relay/fortran/CMakeLists.txt index 9d87995a860e50875d98bf08610532a82bd0dfcb..5bcfc546591d20bb1566eb46ed4cace6f89bc0bd 100644 --- a/src/tests/relay/fortran/CMakeLists.txt +++ b/src/tests/relay/fortran/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/relay/fortran/t_f_relay_smoke.f90 b/src/tests/relay/fortran/t_f_relay_smoke.f90 index d98ec2611bef4bcf27a108767892f5f2d834a560..286faa548886c5564b624b662dbbcd3d6a29ab83 100644 --- a/src/tests/relay/fortran/t_f_relay_smoke.f90 +++ b/src/tests/relay/fortran/t_f_relay_smoke.f90 @@ -1,5 +1,5 @@ !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*! -!* Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +!* Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. !* !* Produced at the Lawrence Livermore National Laboratory !* diff --git a/src/tests/relay/python/CMakeLists.txt b/src/tests/relay/python/CMakeLists.txt index a29293b64d8c18c96ceb4659464fa0915c74bb8f..55eaf1450ccc99fc09d204a9782d16a3999bc0c5 100644 --- a/src/tests/relay/python/CMakeLists.txt +++ b/src/tests/relay/python/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/relay/python/t_python_relay_io.py b/src/tests/relay/python/t_python_relay_io.py index 808beb7868d6bd7d44652986e4f07dce681d0a1c..894f42f8c9f9f4acfa6ebef25e8dc06443206da3 100644 --- a/src/tests/relay/python/t_python_relay_io.py +++ b/src/tests/relay/python/t_python_relay_io.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/relay/python/t_python_relay_io_handle.py b/src/tests/relay/python/t_python_relay_io_handle.py index 424d187dcda27793e11e056e5b080db7d7304497..01b4139c26987d7947545fd46dbccba4c9d0cb9a 100644 --- a/src/tests/relay/python/t_python_relay_io_handle.py +++ b/src/tests/relay/python/t_python_relay_io_handle.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/relay/python/t_python_relay_smoke.py b/src/tests/relay/python/t_python_relay_smoke.py index dad32f745f72e9d4c28f1db7ff7d7e4dcd185e51..1dbbb8e55f07b6bac6f06aeccf793dbac19a10d5 100644 --- a/src/tests/relay/python/t_python_relay_smoke.py +++ b/src/tests/relay/python/t_python_relay_smoke.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/relay/python/t_python_relay_web.py b/src/tests/relay/python/t_python_relay_web.py index 0795d071f2ea6d4b0975bd921826177c221ecee2..53b754871ec6becf6bdee0d292cb851c7547f5c8 100644 --- a/src/tests/relay/python/t_python_relay_web.py +++ b/src/tests/relay/python/t_python_relay_web.py @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/relay/t_relay_io_adios.cpp b/src/tests/relay/t_relay_io_adios.cpp index b2b39873bad8d718ff422c22ade224462770952d..2a47c594dfc1847c1711c361a4cae9db6593d493 100644 --- a/src/tests/relay/t_relay_io_adios.cpp +++ b/src/tests/relay/t_relay_io_adios.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/relay/t_relay_io_basic.cpp b/src/tests/relay/t_relay_io_basic.cpp index aaeef6e33b5a62ded1cb21f33e93b0db0b23d975..dd838af6dba7bd52916c1ec6b5ee402fe552aaaf 100644 --- a/src/tests/relay/t_relay_io_basic.cpp +++ b/src/tests/relay/t_relay_io_basic.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/relay/t_relay_io_file_sizes.cpp b/src/tests/relay/t_relay_io_file_sizes.cpp index ed9e9b20016ee16fa8f12508ed9518e04c45c7e7..2fab7dfc50a8eab71722ad98b29502db41a1c1ed 100644 --- a/src/tests/relay/t_relay_io_file_sizes.cpp +++ b/src/tests/relay/t_relay_io_file_sizes.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/relay/t_relay_io_handle.cpp b/src/tests/relay/t_relay_io_handle.cpp index 062e076e5a2794a89bb840a3570938ab9ef20bd4..4c5535bc4d514088481a59acbe8cadae85994a0d 100644 --- a/src/tests/relay/t_relay_io_handle.cpp +++ b/src/tests/relay/t_relay_io_handle.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/relay/t_relay_io_hdf5.cpp b/src/tests/relay/t_relay_io_hdf5.cpp index a0d6e6427f33f3e7beb70932bcb0f01b9b34181c..e97b12bb402f4be527965eb44c09a5719bfaa5a9 100644 --- a/src/tests/relay/t_relay_io_hdf5.cpp +++ b/src/tests/relay/t_relay_io_hdf5.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/relay/t_relay_io_hdf5_opts.cpp b/src/tests/relay/t_relay_io_hdf5_opts.cpp index 15e221a3891489866207a0f29946f5878688a41d..3fa7b9185c4d2b2d0ec5c515bf58d286563a98dd 100644 --- a/src/tests/relay/t_relay_io_hdf5_opts.cpp +++ b/src/tests/relay/t_relay_io_hdf5_opts.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/relay/t_relay_io_hdf5_read_and_print.cpp b/src/tests/relay/t_relay_io_hdf5_read_and_print.cpp index ad4d24222bba775993fa98b70ac8544e0d51d372..d7fdbf5a1dcc86ec316cae0255468e978c1ef88f 100644 --- a/src/tests/relay/t_relay_io_hdf5_read_and_print.cpp +++ b/src/tests/relay/t_relay_io_hdf5_read_and_print.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/relay/t_relay_io_hdf5_slab.cpp b/src/tests/relay/t_relay_io_hdf5_slab.cpp index 39481dff621e8192995d68ca70077a23b9e0bfb4..1b0ddf53036c4f37078fb4e4d0810abf04958dbe 100644 --- a/src/tests/relay/t_relay_io_hdf5_slab.cpp +++ b/src/tests/relay/t_relay_io_hdf5_slab.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/relay/t_relay_io_silo.cpp b/src/tests/relay/t_relay_io_silo.cpp index 9b4b1b335305f85dd9b48faa1fa2ed0fe8ef31f8..9d8c9f415f66508c5fd965082d5150d71865f9b5 100644 --- a/src/tests/relay/t_relay_io_silo.cpp +++ b/src/tests/relay/t_relay_io_silo.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/relay/t_relay_mpi_io_adios.cpp b/src/tests/relay/t_relay_mpi_io_adios.cpp index 35e820bac5613b13879b2b1208d96dd360fad95d..4b1524b0f56a44369d57f005157729e7c459ea0b 100644 --- a/src/tests/relay/t_relay_mpi_io_adios.cpp +++ b/src/tests/relay/t_relay_mpi_io_adios.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/relay/t_relay_mpi_smoke.cpp b/src/tests/relay/t_relay_mpi_smoke.cpp index 132fd8715634000a7cd2b2fc64d9d28a8303edc7..60092ed6f86e8c5dfd6a8fcc1237d159480fa3ae 100644 --- a/src/tests/relay/t_relay_mpi_smoke.cpp +++ b/src/tests/relay/t_relay_mpi_smoke.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/relay/t_relay_mpi_test.cpp b/src/tests/relay/t_relay_mpi_test.cpp index 1783366ca6d2678e8b71248e2be5d1ce69962072..f79827214aa06907986fd8ad4349c6ef8967f40a 100644 --- a/src/tests/relay/t_relay_mpi_test.cpp +++ b/src/tests/relay/t_relay_mpi_test.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/relay/t_relay_node_viewer.cpp b/src/tests/relay/t_relay_node_viewer.cpp index 8040f14ff17edc66c64d1aa39c8edd3528cd5af2..a7d4c4ece5f225cae5f2618a53b8cdff34afa6ae 100644 --- a/src/tests/relay/t_relay_node_viewer.cpp +++ b/src/tests/relay/t_relay_node_viewer.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/relay/t_relay_smoke.cpp b/src/tests/relay/t_relay_smoke.cpp index bdf7e765512d0ec9b80614c45e1bb00e7320c083..332a3d938202a60205c1d1bd3bb8916986f67a08 100644 --- a/src/tests/relay/t_relay_smoke.cpp +++ b/src/tests/relay/t_relay_smoke.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/relay/t_relay_websocket.cpp b/src/tests/relay/t_relay_websocket.cpp index 38f321fd6f5a5af84490b399d9f33986e1608d05..c65f8c85d423c6b3f219462fe49a6220c5d8cfaa 100644 --- a/src/tests/relay/t_relay_websocket.cpp +++ b/src/tests/relay/t_relay_websocket.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/t_config.hpp.in b/src/tests/t_config.hpp.in index 58dd7934abc803724d174236543289f4b0029155..54ff1dbe75c59a1881f0e64ecfb9332f3085eb9f 100644 --- a/src/tests/t_config.hpp.in +++ b/src/tests/t_config.hpp.in @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/thirdparty/CMakeLists.txt b/src/tests/thirdparty/CMakeLists.txt index 4ef634c3f4b8f8e640423f096205174984b554d3..96fb8e0036259aae147f9c31db8c658a5534ff61 100644 --- a/src/tests/thirdparty/CMakeLists.txt +++ b/src/tests/thirdparty/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) Copyright (c) 2015-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) Copyright (c) 2015-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/tests/thirdparty/t_adios_smoke.cpp b/src/tests/thirdparty/t_adios_smoke.cpp index 3550576324d1eab387db582cd41e809a054410ed..959f1f22843f1ced86b67764e673e6f15fb44034 100644 --- a/src/tests/thirdparty/t_adios_smoke.cpp +++ b/src/tests/thirdparty/t_adios_smoke.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/thirdparty/t_civetweb_smoke.cpp b/src/tests/thirdparty/t_civetweb_smoke.cpp index ee1816b7f1b1e678b0dc095e28226a3c6507043b..cb76e0f7fd254b2ada823c9be25a5e0f3d3c0099 100644 --- a/src/tests/thirdparty/t_civetweb_smoke.cpp +++ b/src/tests/thirdparty/t_civetweb_smoke.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/thirdparty/t_fortran_smoke.f90 b/src/tests/thirdparty/t_fortran_smoke.f90 index 3358b7d306db59c9fc35c91edb773435c0a52e81..b84bbb559acdd9d7cd80c44d82d4d80fdd0debe9 100644 --- a/src/tests/thirdparty/t_fortran_smoke.f90 +++ b/src/tests/thirdparty/t_fortran_smoke.f90 @@ -1,5 +1,5 @@ !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*! -!* Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +!* Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. !* !* Produced at the Lawrence Livermore National Laboratory !* diff --git a/src/tests/thirdparty/t_hdf5_smoke.cpp b/src/tests/thirdparty/t_hdf5_smoke.cpp index abd4b87481af83a37704203607ae3b0a419d7f58..3d9bb1ebc03ae123853a08fac08e7b75b78662db 100644 --- a/src/tests/thirdparty/t_hdf5_smoke.cpp +++ b/src/tests/thirdparty/t_hdf5_smoke.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/thirdparty/t_libb64_smoke.cpp b/src/tests/thirdparty/t_libb64_smoke.cpp index fb1f4cdeba3bcab17089c92db5c5d43182ea2928..ac5112cc394ab453e29a0d4bf294b16e7e797747 100644 --- a/src/tests/thirdparty/t_libb64_smoke.cpp +++ b/src/tests/thirdparty/t_libb64_smoke.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/thirdparty/t_numpy_smoke.cpp b/src/tests/thirdparty/t_numpy_smoke.cpp index 024a159c452b9345f769c1ce85a3f7e994b3b3f3..01a3e33074fabda3c4ed4e9a281301c8a4045902 100644 --- a/src/tests/thirdparty/t_numpy_smoke.cpp +++ b/src/tests/thirdparty/t_numpy_smoke.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/thirdparty/t_rapidjson_smoke.cpp b/src/tests/thirdparty/t_rapidjson_smoke.cpp index 3e201c9ff65a28669310893066abdc8dd6ee87e2..75a4428d3405f5cc909c842066fe198f2f12114f 100644 --- a/src/tests/thirdparty/t_rapidjson_smoke.cpp +++ b/src/tests/thirdparty/t_rapidjson_smoke.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/tests/thirdparty/t_silo_smoke.cpp b/src/tests/thirdparty/t_silo_smoke.cpp index 5805a05cb5474af3457ae330ce411512d27b082b..6579202bee69072f5acf3dabfb5c58cc6d38f2c8 100644 --- a/src/tests/thirdparty/t_silo_smoke.cpp +++ b/src/tests/thirdparty/t_silo_smoke.cpp @@ -1,5 +1,5 @@ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// -// Copyright (c) 2014-2018, Lawrence Livermore National Security, LLC. +// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC. // // Produced at the Lawrence Livermore National Laboratory // diff --git a/src/thirdparty_builtin/civetweb-0a95342/CMakeLists.txt b/src/thirdparty_builtin/civetweb-0a95342/CMakeLists.txt index 3818408d011dd124c88e709925f19909d28f1f24..f111df3dd7662827d8110a913498de4162005792 100644 --- a/src/thirdparty_builtin/civetweb-0a95342/CMakeLists.txt +++ b/src/thirdparty_builtin/civetweb-0a95342/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) Copyright (c) 2015-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) Copyright (c) 2015-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory # diff --git a/src/thirdparty_builtin/libb64-1.2.1/CMakeLists.txt b/src/thirdparty_builtin/libb64-1.2.1/CMakeLists.txt index d2fa1afe06743e5880e6dfd3d78332aa63168953..246d73d96b141ee3df2deab1421d5920de70af28 100644 --- a/src/thirdparty_builtin/libb64-1.2.1/CMakeLists.txt +++ b/src/thirdparty_builtin/libb64-1.2.1/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) Copyright (c) 2015-2018, Lawrence Livermore National Security, LLC. +# Copyright (c) Copyright (c) 2015-2019, Lawrence Livermore National Security, LLC. # # Produced at the Lawrence Livermore National Laboratory #