/Dice.jl

Primary LanguageJuliaApache License 2.0Apache-2.0

Dice.jl

Unit Tests codecov

A Julia prototype implementation of the Dice probabilistic programming language. See https://github.com/SHoltzen/dice

Installation

Install Julia 1.7 or higher using these instructions.

Clone the repository and start julia in project mode for current folder:

cd Dice.jl
julia --project

Install Dice and update dependencies (one can also use precompile or build):

] up

Press CTRL-C or backspace to exit from the pkg terminal and return to Julia REPL.

One can now run a program from the Julia REPL:

include("examples/graph_reachability.jl")

Or from the command line:

julia --project examples/graph_reachability.jl