aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2015-07-21 22:33:09 +0200
committerThomas White <taw@physics.org>2015-07-23 09:59:36 +0200
commit0706e428575586c8b4a6d9e43e8eb0fc76bc2b77 (patch)
tree35612d1c2a34f4f757821aa010fa850a336fef56
parent776e743a254638e6ffca7828ecf30743e8274151 (diff)
Refuse to refine the unity model
-rw-r--r--src/partialator.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/partialator.c b/src/partialator.c
index d539f784..614f439e 100644
--- a/src/partialator.c
+++ b/src/partialator.c
@@ -538,6 +538,11 @@ int main(int argc, char *argv[])
}
}
+ if ( (pmodel == PMODEL_UNITY) && !no_pr ) {
+ no_pr = 1;
+ STATUS("Not going to refine the unity model.\n");
+ }
+
gsl_set_error_handler_off();
rng = gsl_rng_alloc(gsl_rng_mt19937);