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

Remove mention of SparseDiffTools in AbstractColoringAlgorithm #79

Merged
merged 2 commits into from
Aug 9, 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
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ uuid = "47edcb42-4c32-4615-8424-f2b9edc5f35b"
authors = [
"Vaibhav Dixit <vaibhavyashdixit@gmail.com>, Guillaume Dalle and contributors",
]
version = "1.7.0"
version = "1.7.1"

[deps]
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
Expand Down
8 changes: 2 additions & 6 deletions src/sparse.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down
Loading