diff options
author | Wolfgang Brehm <wolfgang.brehm@gmail.com> | 2019-11-14 16:06:37 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2019-11-15 09:41:04 +0100 |
commit | 39f9e154612cfb693a3e678d11c2ab4b9da97878 (patch) | |
tree | b2ef74d749e425377d88801acc402fe05ac2f2ae /src/partialator.c | |
parent | f91016824be876639265d991f47c10c899d00813 (diff) |
Add partiality model GGPM
Diffstat (limited to 'src/partialator.c')
-rw-r--r-- | src/partialator.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/partialator.c b/src/partialator.c index 2b5a235c..173aa27a 100644 --- a/src/partialator.c +++ b/src/partialator.c @@ -1281,6 +1281,8 @@ int main(int argc, char *argv[]) pmodel = PMODEL_OFFSET; } else if ( strcmp(pmodel_str, "random") == 0 ) { pmodel = PMODEL_RANDOM; + } else if ( strcmp(pmodel_str, "ggpm") == 0 ) { + pmodel = PMODEL_GGPM; } else { ERROR("Unknown partiality model '%s'.\n", pmodel_str); return 1; |