-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Synchronous parallelisation implemented * Updated version numbers * add missing i for int for the additional boolean sync parameter in weird str describing parameter types (#66) * Updated branch * Added anesthetic to the README * Modification so that now all dead points are saved for anesthetic usage * Bug fix for linear mode setting birth contour * changed huge to logzero in logweights, as this causes inability to resume with intel compilers Co-authored-by: Lukas Hergt <[email protected]>
- Loading branch information
1 parent
be0993f
commit 53eb094
Showing
15 changed files
with
100 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,8 +28,8 @@ subroutine write_opening_statement(settings) | |
write(stdout_unit,'("")') | ||
write(stdout_unit,'("PolyChord: Next Generation Nested Sampling")') | ||
write(stdout_unit,'("copyright: Will Handley, Mike Hobson & Anthony Lasenby")') | ||
write(stdout_unit,'(" version: 1.18.2")') | ||
write(stdout_unit,'(" release: 7th April 2020")') | ||
write(stdout_unit,'(" version: 1.20.0")') | ||
write(stdout_unit,'(" release: 1st June 2021")') | ||
write(stdout_unit,'(" email: [email protected]")') | ||
write(stdout_unit,'("")') | ||
end if | ||
|
@@ -40,6 +40,7 @@ subroutine write_opening_statement(settings) | |
write(stdout_unit,'("nDims :",I8)') settings%nDims | ||
write(stdout_unit,'("nDerived :",I8)') settings%nDerived | ||
if(settings%do_clustering) write(stdout_unit,'("Doing Clustering")') | ||
if(settings%synchronous) write(stdout_unit,'("Synchronous parallelisation")') | ||
if(settings%equals) write(stdout_unit,'("Generating equally weighted posteriors")') | ||
if(settings%posteriors) write(stdout_unit,'("Generating weighted posteriors")') | ||
if((settings%equals.or.settings%posteriors).and.settings%cluster_posteriors.and.settings%do_clustering) write(stdout_unit,'("Clustering on posteriors")') | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,7 @@ extern "C" void polychord_c_interface( | |
bool, | ||
bool, | ||
double, | ||
bool, | ||
int, | ||
int, | ||
char*, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters