Skip to content

Commit

Permalink
Replace links to the new organization
Browse files Browse the repository at this point in the history
  • Loading branch information
bvdmitri committed Jan 10, 2024
1 parent e74e4b2 commit 08d87b4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@
/Manifest.toml
/docs/Manifest.toml
/docs/build/

.vscode
.idea
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 BIASlab
Copyright (c) 2023-2024 BIASlab, 2024-present ReactiveBayes

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# MatrixCorrectionTools

[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://biaslab.github.io/MatrixCorrectionTools.jl/stable/)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://biaslab.github.io/MatrixCorrectionTools.jl/dev/)
[![Build Status](https://github.com/biaslab/MatrixCorrectionTools.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/biaslab/MatrixCorrectionTools.jl/actions/workflows/CI.yml?query=branch%3Amain)
[![Coverage](https://codecov.io/gh/biaslab/MatrixCorrectionTools.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/biaslab/MatrixCorrectionTools.jl)
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://reactivebayes.github.io/MatrixCorrectionTools.jl/stable/)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://reactivebayes.github.io/MatrixCorrectionTools.jl/dev/)
[![Build Status](https://github.com/reactivebayes/MatrixCorrectionTools.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/reactivebayes/MatrixCorrectionTools.jl/actions/workflows/CI.yml?query=branch%3Amain)
[![Coverage](https://codecov.io/gh/reactivebayes/MatrixCorrectionTools.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/reactivebayes/MatrixCorrectionTools.jl)
[![PkgEval](https://JuliaCI.github.io/NanosoldierReports/pkgeval_badges/M/MatrixCorrectionTools.svg)](https://JuliaCI.github.io/NanosoldierReports/pkgeval_badges/M/MatrixCorrectionTools.html)

`MatrixCorrectionTools` is a lightweight package that offers a straightforward function called `correction!`.
Expand All @@ -12,9 +12,9 @@ This function is designed to correct specific properties of a matrix using prede
For instance, if a matrix contains zero diagonal entries, this package provides the means to replace (correct)
them using either fixed predefined values or a more advanced algorithm based on SVD decomposition.

To learn more about the available correction strategies and see practical examples, please refer to the [documentation](https://biaslab.github.io/MatrixCorrectionTools.jl/stable/).
To learn more about the available correction strategies and see practical examples, please refer to the [documentation](https://reactivebayes.github.io/MatrixCorrectionTools.jl/stable/).


# License

[MIT License](LICENSE) Copyright (c) 2023-2024 BIASlab
[MIT License](LICENSE) Copyright (c) 2023-2024 BIASlab, 2024-present ReactiveBayes
6 changes: 3 additions & 3 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ DocMeta.setdocmeta!(MatrixCorrectionTools, :DocTestSetup, :(using MatrixCorrecti
makedocs(;
modules=[MatrixCorrectionTools],
authors="Bagaev Dmitry <[email protected]>",
repo="https://github.com/biaslab/MatrixCorrectionTools.jl/blob/{commit}{path}#{line}",
repo="https://github.com/reactivebayes/MatrixCorrectionTools.jl/blob/{commit}{path}#{line}",
sitename="MatrixCorrectionTools.jl",
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
canonical="https://biaslab.github.io/MatrixCorrectionTools.jl",
canonical="https://reactivebayes.github.io/MatrixCorrectionTools.jl",
edit_link="main",
assets=String[]
),
Expand All @@ -20,6 +20,6 @@ makedocs(;
)

deploydocs(;
repo="github.com/biaslab/MatrixCorrectionTools.jl",
repo="github.com/reactivebayes/MatrixCorrectionTools.jl",
devbranch="main"
)

0 comments on commit 08d87b4

Please sign in to comment.