From cdadfb7bc61a2f91440fd538cd2706b8fd9566f7 Mon Sep 17 00:00:00 2001 From: Bagaev Dmitry Date: Tue, 17 Oct 2023 17:31:39 +0200 Subject: [PATCH] reexport cholinv --- Project.toml | 4 +++- codemeta.json | 4 ++-- src/RxInfer.jl | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Project.toml b/Project.toml index 858b6e9cd..080de5156 100644 --- a/Project.toml +++ b/Project.toml @@ -2,12 +2,13 @@ name = "RxInfer" uuid = "86711068-29c9-4ff7-b620-ae75d7495b3d" authors = ["Bagaev Dmitry and contributors"] # Do not forget to update the version in the `codemeta.json` too -version = "2.13.1" +version = "2.13.2" [deps] DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8" Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f" DomainSets = "5b8099bc-c8ec-5219-889f-1d9e522a28bf" +FastCholesky = "2d5283b6-8564-42b6-bb00-83ed8e915756" GraphPPL = "b3f8163a-e979-4e85-b43e-1f63d8c8b42c" LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" MacroTools = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09" @@ -23,6 +24,7 @@ TupleTools = "9d95972d-f1c8-5527-a6e0-b4b365fa01f6" DataStructures = "0.18" Distributions = "0.25" DomainSets = "0.5.2, 0.6" +FastCholesky = "1.3.0" GraphPPL = "3.1.0" MacroTools = "0.5.6" Optim = "1.0.0" diff --git a/codemeta.json b/codemeta.json index 373ad7396..77ff92d93 100644 --- a/codemeta.json +++ b/codemeta.json @@ -9,12 +9,12 @@ "downloadUrl": "https://github.com/biaslab/RxInfer.jl/releases", "issueTracker": "https://github.com/biaslab/RxInfer.jl/issues", "name": "RxInfer.jl", - "version": "2.13.1", + "version": "2.13.2", "description": "Julia package for automated, scalable and efficient Bayesian inference on factor graphs with reactive message passing. ", "applicationCategory": "Statistics", "developmentStatus": "active", "readme": "https://biaslab.github.io/RxInfer.jl/stable/", - "softwareVersion": "2.13.1", + "softwareVersion": "2.13.2", "keywords": [ "Bayesian inference", "message passing", diff --git a/src/RxInfer.jl b/src/RxInfer.jl index 2db8e1d6d..c681c3315 100644 --- a/src/RxInfer.jl +++ b/src/RxInfer.jl @@ -2,7 +2,7 @@ module RxInfer using Reexport -@reexport using ReactiveMP, GraphPPL, Rocket, Distributions +@reexport using ReactiveMP, GraphPPL, Rocket, Distributions, FastCholesky include("helpers.jl") include("rocket.jl")