Unverified Commit f19ce32b authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

a few more small tweaks

parent 255bf2f8
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -28,6 +28,7 @@
#include <cmath>
#include <cstdio>
#include <cstring>
#include <vector>
#include <mpi.h>

#if !defined(_FORTIFY_SOURCE) || (_FORTIFY_SOURCE == 0)
+2 −4
Original line number Diff line number Diff line
@@ -15,17 +15,15 @@
#include "force.h"
#include "info.h"
#include "input.h"
#include "lammps.h"
#include "output.h"
#include "pair.h"
#include "thermo.h"
#include "utils.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"

#include <cstdio>
#include <cmath>
#include <cstring>
#include <mpi.h>
#include <vector>

// whether to print verbose output (i.e. not capturing LAMMPS screen output).
bool verbose = false;
+2 −3
Original line number Diff line number Diff line
@@ -13,7 +13,6 @@

#include "MANYBODY/pair_comb.h"
#include "MANYBODY/pair_comb3.h"
#include "MANYBODY/pair_eim.h"
#include "MANYBODY/pair_gw.h"
#include "MANYBODY/pair_gw_zbl.h"
#include "MANYBODY/pair_nb3b_harmonic.h"
@@ -26,13 +25,13 @@
#include "USER-MISC/pair_tersoff_table.h"
#include "info.h"
#include "input.h"
#include "lammps.h"
#include "potential_file_reader.h"
#include "utils.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"

#include <cstring>
#include <iostream>
#include <vector>
#include <mpi.h>

#if defined(OMPI_MAJOR_VERSION)
+0 −1
Original line number Diff line number Diff line
@@ -16,7 +16,6 @@
#include "gmock/gmock.h"
#include "gtest/gtest.h"
#include <exception>
#include <string>

using namespace LAMMPS_NS;
using ::testing::Eq;
+1 −0
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@
   See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */

#include "lmptype.h"
#include "tokenizer.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"
Loading