From b8f22d19bd7cea4ffb12957b72cdf198d85f38a6 Mon Sep 17 00:00:00 2001
From: Gareth Tribello <gt@eider.phy.qub.ac.uk>
Date: Wed, 9 Dec 2015 18:03:11 +0000
Subject: [PATCH] Made adjacency matrix base lowmem by default in order to
 avoid using large amounts of memory

---
 src/adjmat/AdjacencyMatrixBase.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/adjmat/AdjacencyMatrixBase.cpp b/src/adjmat/AdjacencyMatrixBase.cpp
index f07d5bb0c..82cb7d4d7 100644
--- a/src/adjmat/AdjacencyMatrixBase.cpp
+++ b/src/adjmat/AdjacencyMatrixBase.cpp
@@ -32,6 +32,7 @@ namespace adjmat {
 void AdjacencyMatrixBase::registerKeywords( Keywords& keys ){
   multicolvar::MultiColvarBase::registerKeywords( keys );
   keys.add("compulsory","WTOL","0.0","if the base multicolvars have weights then you must define a hard cutoff on those you want to consider explicitally");
+  keys.remove("LOWMEM"); keys.use("HIGHMEM");
 }
 
 AdjacencyMatrixBase::AdjacencyMatrixBase(const ActionOptions& ao):
-- 
GitLab