-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [feat] add comptime chcek for float and int values * [fix,feat] update bernoulli * [docs] draft of new readme * [docs] update new readme * [fix,test] bug fixes and tests added * [fix,test] new beta implementation w/ tests * [fix,test] bug fixes and tests added; binomial * [feat] added cauchy distribution * [test] updating ci action * [fix] updating build script * [fix,test] tests and bug fixes for chi squared * [test] tests for dirichlet * [fix,test] tests and new lnPdf for exponential * [feat,test] new gamma implementation and tests * [fix,test] fix pmf and tests for geometric * [fix,test] sumToOne form utils and tests for multinomial * [fix] switch rng to rand * [test] adding tests to negative binomial * [docs] correcting negative binomial header docs * [docs,test] negative binomial docs fix; tests for normal distr * [fix,test] fix bugs in poisson sampling and adding tests * [test] add tests for uniform and discrete uniform * [fix,feat] bug fixes and new functions * [feat] add sumToOne check * [feat] weighted sampling * [fix,feat] add new distributions to main file * [fix] mark multivariate normal as unstable * [feat,draft] RandomEnvironment struct for high-level API * [misc] scripts for builds/tests * [feat,draft] adding examples * [docs,draft] draft of new docs * [docs,draft] updating readme * [fix] bug fixes for chi squared, poisson, REnv * [fix] removing docs build from script * [docs] adding index files for docs * [fix] correcting pdf/lnPdf * [test] adding tests; new dirichlet and multinomial apis * [test] building examples as part of ci * [test] add zig latest tests in ci; pdf/pmf to distr files * [fix] bug in math.pow for generic float types * [fix] generic pdf and lnPdf fixies for beta distr * [fix] removing support for f16 * [docs] updating docs to be built from module docstrings * [docs] build docs for pull requests * [fix] update example build.zig for 0.13 * [fix] update scripts for 0.13 and new .zig-cache * [fix] binomial pmf update * [fix] normal distr pdf/lnPdf corrections * [test] add pdf tests to RandomEnvironment * [test] updating ci and gitignore for 0.13 * [docs] restructing docs
- Loading branch information
Showing
18 changed files
with
127 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
.{ | ||
.name = "zprob", | ||
.version = "0.2.0", | ||
.version = "0.2.1", | ||
.paths = .{ | ||
"build.zig", | ||
"build.zig.zon", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.