diff options
author | Peter Carbonetto | 2017-08-22 10:04:18 -0500 |
---|---|---|
committer | GitHub | 2017-08-22 10:04:18 -0500 |
commit | 2554242d10b9a7b58bd6c7df82a10e747b6cc0eb (patch) | |
tree | ef6a14e0f5d54c97f17aab9e28ddf464754372d7 /src/param.h | |
parent | c7cbd8b2d5a06b7b86733719315f9da1638cb32e (diff) | |
parent | 48da44bf2da05f76008b083923ddf5701b9c029a (diff) | |
download | pangemma-2554242d10b9a7b58bd6c7df82a10e747b6cc0eb.tar.gz |
Merge pull request #76 from genenetwork/merge-checkK
Fixes matrix checks---looking saner now.
Diffstat (limited to 'src/param.h')
-rw-r--r-- | src/param.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/param.h b/src/param.h index 249bf02..08b1e10 100644 --- a/src/param.h +++ b/src/param.h @@ -112,7 +112,8 @@ public: class PARAM { public: // IO-related parameters - bool mode_check = true; + bool mode_check = true; // run data checks (slower) + bool mode_strict = false; // exit on some data checks bool mode_silence; bool mode_debug = false; uint issue; // enable tests for issue on github tracker |