Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bilby
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lscsoft
bilby
Commits
e6276945
Commit
e6276945
authored
6 years ago
by
Gregory Ashton
Browse files
Options
Downloads
Patches
Plain Diff
Move default args into a property to avoid calling at init
parent
26822050
No related branches found
No related tags found
1 merge request
!351
Resolve "bilby-0.3.6 doesn't declare dependency on astropy"
Pipeline
#48194
passed
6 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bilby/gw/prior.py
+8
-6
8 additions, 6 deletions
bilby/gw/prior.py
with
8 additions
and
6 deletions
bilby/gw/prior.py
+
8
−
6
View file @
e6276945
...
...
@@ -17,12 +17,14 @@ except ImportError:
class
Cosmological
(
Interped
):
_default_args_dict
=
dict
(
redshift
=
dict
(
name
=
'
redshift
'
,
latex_label
=
'
$z$
'
,
unit
=
None
),
luminosity_distance
=
dict
(
name
=
'
luminosity_distance
'
,
latex_label
=
'
$d_L$
'
,
unit
=
'
Mpc
'
),
comoving_distance
=
dict
(
name
=
'
comoving_distance
'
,
latex_label
=
'
$d_C$
'
,
unit
=
'
Mpc
'
))
@property
def
_default_args_dict
(
self
):
return
dict
(
redshift
=
dict
(
name
=
'
redshift
'
,
latex_label
=
'
$z$
'
,
unit
=
None
),
luminosity_distance
=
dict
(
name
=
'
luminosity_distance
'
,
latex_label
=
'
$d_L$
'
,
unit
=
units
.
Mpc
),
comoving_distance
=
dict
(
name
=
'
comoving_distance
'
,
latex_label
=
'
$d_C$
'
,
unit
=
units
.
Mpc
))
def
__init__
(
self
,
minimum
,
maximum
,
cosmology
=
None
,
name
=
None
,
latex_label
=
None
,
unit
=
None
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment