From 0d264dd0fe7ff5daee4087dff5da7360fae11799 Mon Sep 17 00:00:00 2001 From: Guillaume Dalle <22795598+gdalle@users.noreply.github.com> Date: Fri, 9 Aug 2024 16:10:07 +0200 Subject: [PATCH 1/2] Remove mention of SparseDiffTools in AbstractColoringAlgorithm --- src/sparse.jl | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/sparse.jl b/src/sparse.jl index ffd157a..21f9bd2 100644 --- a/src/sparse.jl +++ b/src/sparse.jl @@ -47,7 +47,7 @@ hessian_sparsity(f, x, ::NoSparsityDetector) = trues(length(x), length(x)) """ AbstractColoringAlgorithm -Abstract supertype for Jacobian/Hessian coloring algorithms, defined for example in [SparseDiffTools.jl](https://github.com/JuliaDiff/SparseDiffTools.jl). +Abstract supertype for Jacobian/Hessian coloring algorithms. # Required methods @@ -59,11 +59,7 @@ Abstract supertype for Jacobian/Hessian coloring algorithms, defined for example The terminology and definitions are taken from the following paper: -> "What Color Is Your Jacobian? Graph Coloring for Computing Derivatives" -> -> Assefaw Hadish Gebremedhin, Fredrik Manne, and Alex Pothen (2005) -> -> https://epubs.siam.org/doi/10.1137/S0036144504444711 +> [_What Color Is Your Jacobian? Graph Coloring for Computing Derivatives_](https://epubs.siam.org/doi/10.1137/S0036144504444711), Assefaw Hadish Gebremedhin, Fredrik Manne, and Alex Pothen (2005) """ abstract type AbstractColoringAlgorithm end From d74073db12f6c02aa5e2de9f653cce16abd7235b Mon Sep 17 00:00:00 2001 From: Guillaume Dalle <22795598+gdalle@users.noreply.github.com> Date: Fri, 9 Aug 2024 16:10:34 +0200 Subject: [PATCH 2/2] Bump --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 69c8e9f..bfa2cee 100644 --- a/Project.toml +++ b/Project.toml @@ -3,7 +3,7 @@ uuid = "47edcb42-4c32-4615-8424-f2b9edc5f35b" authors = [ "Vaibhav Dixit , Guillaume Dalle and contributors", ] -version = "1.7.0" +version = "1.7.1" [deps] ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"