Skip to content
This repository was archived by the owner on Dec 3, 2019. It is now read-only.

Commit bd091f7

Browse files
committedDec 5, 2018
Merge branch 'development' of https://github.com/revbayes/revbayes into development
2 parents 6eda2ff + 1a29d72 commit bd091f7

File tree

70 files changed

+10702
-8656
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+10702
-8656
lines changed
 

‎src/core/analysis/MonteCarloAnalysis.cpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -475,12 +475,14 @@ void MonteCarloAnalysis::resetReplicates( void )
475475
}
476476

477477

478+
size_t replicate_start = size_t(floor( (double(pid-active_PID) / num_processes ) * replicates ) );
479+
RandomNumberGenerator *rng = GLOBAL_RNG;
480+
for (size_t j=0; j<(2*replicate_start); ++j) rng->uniform01();
481+
482+
478483
// redraw initial states for replicates
479484
for (size_t i = 0; i < replicates; ++i)
480485
{
481-
RandomNumberGenerator *rng = GLOBAL_RNG;
482-
for (size_t j=0; j<10; ++j) rng->uniform01();
483-
484486

485487
if ( i > 0 && runs[i] != NULL )
486488
{

‎src/core/dag/DeterministicNode.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ void RevBayesCore::DeterministicNode<valueType>::touchMe( DagNode *toucher, bool
481481
needs_update = true;
482482

483483
// only if this function did not need an update we delegate the touch affected
484-
if ( needed_update == false || was_touched == false || true )
484+
if ( needed_update == false || was_touched == false )
485485
{
486486
// Dispatch the touch message to downstream nodes
487487
this->touchAffected( touchAll );

0 commit comments

Comments
 (0)
This repository has been archived.