Skip to content
Snippets Groups Projects
Commit f96bfe48 authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Increase the nwalks factor to 30

parent 0276a77a
No related branches found
No related tags found
1 merge request!564Changes the default number of walks to 30x ndim (previously 10x ndims).
Pipeline #71923 failed
......@@ -156,7 +156,7 @@ class Dynesty(NestedSampler):
def _verify_kwargs_against_default_kwargs(self):
if not self.kwargs['walks']:
self.kwargs['walks'] = self.ndim * 10
self.kwargs['walks'] = self.ndim * 30
if not self.kwargs['update_interval']:
self.kwargs['update_interval'] = int(0.6 * self.kwargs['nlive'])
if not self.kwargs['print_func']:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment