Unverified Commit 2a6546d6 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer Committed by GitHub
Browse files

Merge pull request #2296 from akohlmey/next_patch_version

Update version strings for next patch release
parents cffc6672 7f87cccc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
.TH LAMMPS "21 July 2020" "2020-07-21"
.TH LAMMPS "21 August 2020" "2020-08-21"
.SH NAME
.B LAMMPS
\- Molecular Dynamics Simulator.
+1 −1
Original line number Diff line number Diff line
#define LAMMPS_VERSION "21 Jul 2020"
#define LAMMPS_VERSION "21 Aug 2020"
+2 −0
Original line number Diff line number Diff line
@@ -105,6 +105,7 @@ TEST_F(LatticeRegionTest, lattice_none)
    lmp->input->one("units lj");
    lmp->input->one("lattice none 1.0");
    if (!verbose) ::testing::internal::GetCapturedStdout();
    lattice = lmp->domain->lattice;
    ASSERT_EQ(lattice->xlattice, 1.0);
    ASSERT_EQ(lattice->ylattice, 1.0);
    ASSERT_EQ(lattice->zlattice, 1.0);
@@ -170,6 +171,7 @@ TEST_F(LatticeRegionTest, lattice_sc)
    lmp->input->one("units lj");
    lmp->input->one("lattice sc 2.0");
    if (!verbose) ::testing::internal::GetCapturedStdout();
    lattice = lmp->domain->lattice;
    ASSERT_DOUBLE_EQ(lattice->xlattice, pow(0.5, 1.0 / 3.0));
    ASSERT_DOUBLE_EQ(lattice->ylattice, pow(0.5, 1.0 / 3.0));
    ASSERT_DOUBLE_EQ(lattice->zlattice, pow(0.5, 1.0 / 3.0));