Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace links to the new organization #5

Merged
merged 1 commit into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
)
Loading