Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow more flexible CosmoPower network settings. #88

Merged
merged 27 commits into from
Feb 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
e18a647
Allow user-specified number of networks.
HTJense Nov 22, 2022
8dab02c
Minor mistake in error string formatting.
HTJense Nov 23, 2022
3e40edc
Added option for internal ell-factor in network.
HTJense Nov 28, 2022
0ab4bfe
Merge branch 'master' into dev-cosmopower-settings
itrharrison Nov 28, 2022
7a8afb5
Bugfix.
HTJense Nov 29, 2022
aaef762
Changed which parameters get passed on to network.
HTJense Nov 29, 2022
4400ef0
Added Clpp support.
HTJense Nov 30, 2022
e59a579
Generalized CMB unit factor.
HTJense Nov 30, 2022
b8f4ba1
Added parameter requirements for cobaya standard.
HTJense Dec 1, 2022
a621ce9
Added general ell factor function and type hinting.
HTJense Dec 1, 2022
1c2d4f6
Added ell_factor docstring.
HTJense Dec 7, 2022
75a7003
Fixed a bug where cobaya would not resume a run due to default argume…
HTJense Jan 16, 2023
65ea712
Using BoltzmannBase.renames instead of old system.
HTJense Jan 19, 2023
cdf3e80
Added Derived parameter network.
HTJense Jan 20, 2023
0db01fa
Codestyle.
HTJense Jan 24, 2023
73ae634
Added init file change.
HTJense Jan 24, 2023
eb3132d
Docstring changes in prep for #37
HTJense Jan 24, 2023
268fa56
Updated pytest.
HTJense Jan 24, 2023
7958fe6
Codestyle.
HTJense Jan 24, 2023
285bc5f
Merge branch 'master' into dev-cosmopower-settings
itrharrison Jan 25, 2023
ab9dcb1
codestyle fixes
itrharrison Jan 30, 2023
08dd6d5
fixed data location for tests
itrharrison Jan 30, 2023
af5dba1
fixed test data path
itrharrison Jan 30, 2023
13fbd76
syntax for py37
itrharrison Jan 30, 2023
50f6c85
Merge branch 'master' into dev-cosmopower-settings
itrharrison Feb 1, 2023
a89cc14
Merge branch 'master' into dev-cosmopower-settings
itrharrison Feb 1, 2023
b236fb5
added need to install cosmopower
itrharrison Feb 1, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ install_requires =
mflike @ git+https://github.com/simonsobs/lat_mflike@master

[options.package_data]
soliket = *.yaml,*.bibtex,clusters/data/*,clusters/data/selFn_equD56/*,lensing/data/*.txt,mflike/*.yaml,tests/*.yaml,data/xcorr_simulated/*.txt
soliket = *.yaml,*.bibtex,clusters/data/*,clusters/data/selFn_equD56/*,lensing/data/*.txt,mflike/*.yaml,tests/*.yaml,data/xcorr_simulated/*.txt,data/CosmoPower/CP_paper/CMB/*.pkl
testpaths = "soliket"
text_file_format = rst

Expand Down
2 changes: 1 addition & 1 deletion soliket/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from .xcorr import XcorrLikelihood # noqa: F401
from .foreground import Foreground
from .bandpass import BandPass
from .cosmopower import CosmoPower
from .cosmopower import CosmoPower, CosmoPowerDerived

try:
from .clusters import ClusterLikelihood # noqa: F401
Expand Down
Loading