From 149d43f84cd8d9d6dbf75b3d13645525f690ba15 Mon Sep 17 00:00:00 2001 From: sjplimp Date: Fri, 26 Jul 2013 14:54:31 +0000 Subject: [PATCH] git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@10401 f3b2605a-c512-4ea7-a41b-209d697bcdaa --- src/REPLICA/verlet_split.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/REPLICA/verlet_split.cpp b/src/REPLICA/verlet_split.cpp index 969768a8bc..b9eadde447 100644 --- a/src/REPLICA/verlet_split.cpp +++ b/src/REPLICA/verlet_split.cpp @@ -220,6 +220,11 @@ void VerletSplit::init() if (force->kspace_match("tip4p",0)) tip4p_flag = 1; else tip4p_flag = 0; + // currently TIP4P does not work with verlet/split, so generate error + // see Axel email on this, also other TIP4P notes below + + if (tip4p_flag) error->all(FLERR,"Verlet/split does not yet support TIP4P"); + Verlet::init(); }