Commit 1aa8307f authored by Steven J. Plimpton's avatar Steven J. Plimpton
Browse files

change CSlib files to BSD license

parent ab1cc706
Loading
Loading
Loading
Loading
+32 −501

File changed.

Preview size limit exceeded, changes collapsed.

+8 −6
Original line number Diff line number Diff line
This is the July 2018 version of the Client/Server messaging library
(CSlib).  Only the source directory and license file are included here
as part of the LAMMPS distribution.  The full CSlib distribution,
including documentation and test codes, can be found at the website:
This is the the Client/Server messaging library (CSlib).

Only the source directory and license file are included here as part
of the LAMMPS distribution.  The full CSlib distribution, including
documentation and test codes, can be found at the website:
http://cslib.sandia.gov (as of Aug 2018).

The contact author is
@@ -11,8 +12,9 @@ Sandia National Laboratories
sjplimp@sandia.gov
http://www.sandia.gov/~sjplimp

The CSlib is distributed as open-source code under the GNU LGPL
license.  See the accompanying LICENSE file.
The CSlib is distributed as open-source code under the modified
Berkeley Software Distribution (BSD) License.  See the accompanying
LICENSE file.

This directory contains the following:

+9 −8
Original line number Diff line number Diff line
/* -*- c++ -*- ----------------------------------------------------------
   LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
   http://lammps.sandia.gov, Sandia National Laboratories
/* ----------------------------------------------------------------------
   CSlib - Client/server library for code coupling
   http://cslib.sandia.gov, Sandia National Laboratories
   Steve Plimpton, sjplimp@sandia.gov

   Copyright (2003) Sandia Corporation.  Under the terms of Contract
   DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
   certain rights in this software.  This software is distributed under
   the GNU General Public License.
   Copyright 2018 National Technology & Engineering Solutions of
   Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
   NTESS, the U.S. Government retains certain rights in this software.
   This software is distributed under the modified Berkeley Software
   Distribution (BSD) License.

   See the README file in the top-level LAMMPS directory.
   See the README file in the top-level CSlib directory.
------------------------------------------------------------------------- */

// MPI constants and dummy functions
+9 −8
Original line number Diff line number Diff line
/* -*- c++ -*- ----------------------------------------------------------
   LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
   http://lammps.sandia.gov, Sandia National Laboratories
/* ----------------------------------------------------------------------
   CSlib - Client/server library for code coupling
   http://cslib.sandia.gov, Sandia National Laboratories
   Steve Plimpton, sjplimp@sandia.gov

   Copyright (2003) Sandia Corporation.  Under the terms of Contract
   DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
   certain rights in this software.  This software is distributed under
   the GNU General Public License.
   Copyright 2018 National Technology & Engineering Solutions of
   Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
   NTESS, the U.S. Government retains certain rights in this software.
   This software is distributed under the modified Berkeley Software
   Distribution (BSD) License.

   See the README file in the top-level LAMMPS directory.
   See the README file in the top-level CSlib directory.
------------------------------------------------------------------------- */

// ZMQ constants and dummy functions
+2 −2
Original line number Diff line number Diff line
@@ -6,8 +6,8 @@
   Copyright 2018 National Technology & Engineering Solutions of
   Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
   NTESS, the U.S. Government retains certain rights in this software.
   This software is distributed under the GNU Lesser General Public
   License (LGPL).
   This software is distributed under the modified Berkeley Software
   Distribution (BSD) License.

   See the README file in the top-level CSlib directory.
------------------------------------------------------------------------- */
Loading