Skip to content

Commit

Permalink
Update term.
Browse files Browse the repository at this point in the history
Replace "fixed" with "constant" whenever applicable.
  • Loading branch information
ioannis-vm committed Nov 21, 2024
1 parent feb4a1a commit f115815
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pelicun/uq.py
Original file line number Diff line number Diff line change
Expand Up @@ -1261,7 +1261,7 @@ def __init__(
Set of parameters that define the Cumulative Distribution
Function (CDF) of the variable: E.g., mean and coefficient
of variation. Actual parameters depend on the distribution.
A 1D `theta` array represents fixed parameters and results
A 1D `theta` array represents constant parameters and results
in realizations that are all from the same distribution.
A 2D `theta` array represents variable parameters, meaning
that each realization will be sampled from the distribution
Expand Down Expand Up @@ -1309,7 +1309,7 @@ def __init__(
1,
2,
}, 'Parameter `truncation_limits` can only be a 1D or 2D array.'
# 1D corresponds to fixed parameters.
# 1D corresponds to constant parameters.
# 2D corresponds to variable parameters (different in each
# realization).

Expand All @@ -1331,7 +1331,7 @@ def constant_parameters(self) -> bool:
Returns
-------
bool
True if the parameters are fixed, false otherwise.
True if the parameters are constant, false otherwise.
"""
assert self.theta is not None
Expand Down

0 comments on commit f115815

Please sign in to comment.