Skip to content

Commit a61db39

Browse files
committed
bump version and add export
1 parent efa8cde commit a61db39

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ uuid = "7a57a42e-76ec-4ea3-a279-07e840d6d9cf"
33
keywords = ["probablistic programming"]
44
license = "MIT"
55
desc = "Common interfaces for probabilistic programming"
6-
version = "0.9.0"
6+
version = "0.10.0"
77

88
[deps]
99
AbstractMCMC = "80f14c24-f653-4e6a-9b94-39d6b0f70001"

src/AbstractPPL.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export VarName,
1818

1919

2020
# Abstract model functions
21-
export AbstractProbabilisticProgram, condition, decondition, logdensityof, densityof, AbstractContext, evaluate!!
21+
export AbstractProbabilisticProgram, condition, decondition, fix, unfix, logdensityof, densityof, AbstractContext, evaluate!!
2222

2323
# Abstract traces
2424
export AbstractModelTrace

src/abstractprobprog.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ function fix end
8989
9090
Remove any fixed parameters from the model `model`, returning a new model without the fixed parameters.
9191
92-
This function reverses the effect of `fix()` by removing parameter constraints that were previously set.
92+
This function reverses the effect of `fix` by removing parameter constraints that were previously set.
9393
It returns a new model where all previously fixed parameters are allowed to vary according to their
9494
original distributions in the model.
9595

0 commit comments

Comments
 (0)