-
-
Notifications
You must be signed in to change notification settings - Fork 528
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trac #25872: Modular decomposition bug
{{{ sage: G1 = Graph('FwA]w') sage: G2 = Graph('F@Nfg') sage: G1.modular_decomposition(algorithm='tedder') (PRIME, [6, 2, 1, 5, 0, (PARALLEL, [3, 4])]) sage: G2.modular_decomposition(algorithm='tedder') (PRIME, [6, 5, 0, 2, 3, 1, 4]) sage: G1.is_isomorphic(G2) True }}} #24898 was not enough. This ticket removes `'tedder'` implementation, as buggy unfixable abandonware (see #33902 for another example of a bug); the `algorithm=` option is removed, as we only have one implementation now. URL: https://trac.sagemath.org/25872 Reported by: jmantysalo Ticket author(s): Dima Pasechnik Reviewer(s): David Coudert, Matthias Koeppe
- Loading branch information
Showing
2 changed files
with
103 additions
and
2,133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.