From 5b1ceb84e1bb898b6ef1abb7b14d9f292003500a Mon Sep 17 00:00:00 2001 From: Guillaume Dalle <22795598+gdalle@users.noreply.github.com> Date: Tue, 11 Jun 2024 10:26:41 +0200 Subject: [PATCH] Add transposition warning --- src/colpack_partial_coloring.jl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/colpack_partial_coloring.jl b/src/colpack_partial_coloring.jl index 9c90632..03f5b4f 100644 --- a/src/colpack_partial_coloring.jl +++ b/src/colpack_partial_coloring.jl @@ -26,6 +26,9 @@ The users needs to specify: - a partial coloring `method` among `$PARTIAL_COLORING_METHODS` - an `order` on the vertices among `$PARTIAL_COLORING_ORDERS` +!!! warning + To perform a partial column coloring of a CSC matrix, we actually perform a partial row coloring of its transpose (which is a CSR matrix). Thus, the coloring results will in general differ between the file API and the matrix API. + # Example ```jldoctest