Skip to content

Commit c36d3e6

Browse files
committed
Update repo owner
1 parent 0d3501a commit c36d3e6

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ identifiers:
1818
- type: doi
1919
value: 10.5281/zenodo.11314275
2020
description: Zenodo
21-
repository-code: 'https://github.com/gdalle/SparseMatrixColorings.jl'
21+
repository-code: 'https://github.com/JuliaDiff/SparseMatrixColorings.jl'
2222
abstract: >-
2323
Coloring algorithms for sparse Jacobian and Hessian
2424
matrices

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# SparseMatrixColorings.jl
22

3-
[![Build Status](https://github.com/gdalle/SparseMatrixColorings.jl/actions/workflows/Test.yml/badge.svg?branch=main)](https://github.com/gdalle/SparseMatrixColorings.jl/actions/workflows/Test.yml?query=branch%3Amain)
4-
[![Stable Documentation](https://img.shields.io/badge/docs-stable-blue.svg)](https://gdalle.github.io/SparseMatrixColorings.jl/stable/)
5-
[![Dev Documentation](https://img.shields.io/badge/docs-dev-blue.svg)](https://gdalle.github.io/SparseMatrixColorings.jl/dev/)
6-
[![Coverage](https://codecov.io/gh/gdalle/SparseMatrixColorings.jl/branch/main/graph/badge.svg)](https://app.codecov.io/gh/gdalle/SparseMatrixColorings.jl)
3+
[![Build Status](https://github.com/juliadiff/SparseMatrixColorings.jl/actions/workflows/Test.yml/badge.svg?branch=main)](https://github.com/juliadiff/SparseMatrixColorings.jl/actions/workflows/Test.yml?query=branch%3Amain)
4+
[![Stable Documentation](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliadiff.org/SparseMatrixColorings.jl/stable/)
5+
[![Dev Documentation](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliadiff.org/SparseMatrixColorings.jl/dev/)
6+
[![Coverage](https://codecov.io/gh/juliadiff/SparseMatrixColorings.jl/branch/main/graph/badge.svg)](https://app.codecov.io/gh/juliadiff/SparseMatrixColorings.jl)
77
[![Code Style: Blue](https://img.shields.io/badge/code%20style-blue-4495d1.svg)](https://github.com/JuliaDiff/BlueStyle)
88
[![arXiv](https://img.shields.io/badge/arXiv-2505.07308-b31b1b.svg)](https://arxiv.org/abs/2505.07308)
99
[![DOI](https://zenodo.org/badge/801999408.svg)](https://zenodo.org/doi/10.5281/zenodo.11314275)

docs/make.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,7 @@ makedocs(;
2121
)
2222

2323
deploydocs(;
24-
repo="github.com/gdalle/SparseMatrixColorings.jl", push_preview=true, devbranch="main"
24+
repo="github.com/JuliaDiff/SparseMatrixColorings.jl",
25+
push_preview=true,
26+
devbranch="main",
2527
)

test/check.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ end
310310
@test_logs log !substitutable_bidirectional(A, B, [1, 0, 0, 1], [0, 1, 1]; verbose=true)
311311
end
312312

313-
# See https://github.com/gdalle/SparseMatrixColorings.jl/pull/300
313+
# See https://github.com/JuliaDiff/SparseMatrixColorings.jl/pull/300
314314
@testset "Empty matrix" begin
315315
problem = ColoringProblem(; structure=:symmetric, partition=:column)
316316
algo = GreedyColoringAlgorithm(; decompression=:substitution)

test/structured.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ end;
5858
end
5959
end;
6060

61-
# See https://github.com/gdalle/SparseMatrixColorings.jl/pull/299
61+
# See https://github.com/JuliaDiff/SparseMatrixColorings.jl/pull/299
6262
@testset "SparsityPatternCSC $T" for T in [Int, Float32]
6363
S = sparse(T[
6464
0 0 1 1 0 1

0 commit comments

Comments
 (0)