diff options
author | Thomas White <taw@physics.org> | 2013-06-06 14:32:42 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2013-06-06 14:33:10 +0200 |
commit | b7e446f56729083f4d6fb0fffc9c1a5d67b55e29 (patch) | |
tree | c22610edae6029af999b239d5284da045a61a5b4 /src/indexamajig.c | |
parent | 8fb45911249c244a721d1bbea2eb5852f0a50b60 (diff) |
Set default integration method to "rings-nocen"
Applying the Principle of Least Surprise before merging to master.
Previously, it was rings-cen.
Diffstat (limited to 'src/indexamajig.c')
-rw-r--r-- | src/indexamajig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indexamajig.c b/src/indexamajig.c index 23f6cf7a..d257b50c 100644 --- a/src/indexamajig.c +++ b/src/indexamajig.c @@ -206,7 +206,7 @@ int main(int argc, char *argv[]) } iargs.indm = NULL; /* No default */ iargs.ipriv = NULL; /* No default */ - iargs.int_meth = integration_method("rings", NULL); + iargs.int_meth = INTEGRATION_RINGS; /* No centering, no saturation */ /* Long options */ const struct option longopts[] = { |