Skip to content

Commit

Permalink
Formatting and mode changes
Browse files Browse the repository at this point in the history
  • Loading branch information
RudolfWeeber committed Mar 13, 2019
1 parent 8ebc4e4 commit 952199a
Show file tree
Hide file tree
Showing 16 changed files with 4 additions and 3 deletions.
Empty file modified config/install-sh
100755 → 100644
Empty file.
Empty file modified config/missing
100755 → 100644
Empty file.
Empty file modified src/core/comfixed_global.cpp
100755 → 100644
Empty file.
Empty file modified src/core/comfixed_global.hpp
100755 → 100644
Empty file.
Empty file modified src/core/config.hpp
100755 → 100644
Empty file.
Empty file modified src/core/debye_hueckel.cpp
100755 → 100644
Empty file.
Empty file modified src/core/forcecap.hpp
100755 → 100644
Empty file.
Empty file modified src/core/galilei.cpp
100755 → 100644
Empty file.
Empty file modified src/core/galilei.hpp
100755 → 100644
Empty file.
Empty file modified src/core/ghmc.hpp
100755 → 100644
Empty file.
Empty file modified src/core/global.hpp
100755 → 100644
Empty file.
Empty file modified src/core/mdlc_correction.hpp
100755 → 100644
Empty file.
Empty file modified src/core/molforces.hpp
100755 → 100644
Empty file.
Empty file modified src/core/nemd.hpp
100755 → 100644
Empty file.
Empty file modified src/core/virtual_sites/virtual_sites_com.hpp
100755 → 100644
Empty file.
7 changes: 4 additions & 3 deletions testsuite/python/lb.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,20 +247,21 @@ def test_disable_3pt_coupling(self):
dens=self.params['dens'],
agrid=self.params['agrid'],
tau=self.system.time_step,
fric=self.params['friction'],couple="3pt")
fric=self.params['friction'], couple="3pt")
self.system.actors.add(lbf)
self.system.actors.clear()

# Check that explicit 2pt coupling can be activated
lbf = self.lb_class(
visc=self.params['viscosity'],
visc=self.params['viscosity'],
dens=self.params['dens'],
agrid=self.params['agrid'],
tau=self.system.time_step,
fric=self.params['friction'],couple="2pt")
fric=self.params['friction'], couple="2pt")
self.system.actors.add(lbf)
self.system.actors.clear()


@ut.skipIf(not espressomd.has_features(["LB"]),
"Features not available, skipping test!")
class TestLBCPU(TestLB, ut.TestCase):
Expand Down

0 comments on commit 952199a

Please sign in to comment.