Skip to content

Commit

Permalink
bump version and add export
Browse files Browse the repository at this point in the history
  • Loading branch information
sunxd3 committed Oct 25, 2024
1 parent efa8cde commit a61db39
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ uuid = "7a57a42e-76ec-4ea3-a279-07e840d6d9cf"
keywords = ["probablistic programming"]
license = "MIT"
desc = "Common interfaces for probabilistic programming"
version = "0.9.0"
version = "0.10.0"

[deps]
AbstractMCMC = "80f14c24-f653-4e6a-9b94-39d6b0f70001"
Expand Down
2 changes: 1 addition & 1 deletion src/AbstractPPL.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export VarName,


# Abstract model functions
export AbstractProbabilisticProgram, condition, decondition, logdensityof, densityof, AbstractContext, evaluate!!
export AbstractProbabilisticProgram, condition, decondition, fix, unfix, logdensityof, densityof, AbstractContext, evaluate!!

# Abstract traces
export AbstractModelTrace
Expand Down
2 changes: 1 addition & 1 deletion src/abstractprobprog.jl
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ function fix end
Remove any fixed parameters from the model `model`, returning a new model without the fixed parameters.
This function reverses the effect of `fix()` by removing parameter constraints that were previously set.
This function reverses the effect of `fix` by removing parameter constraints that were previously set.
It returns a new model where all previously fixed parameters are allowed to vary according to their
original distributions in the model.
Expand Down

0 comments on commit a61db39

Please sign in to comment.