Changes between Initial Version and Version 13 of Ticket #25872
- Timestamp:
- May 25, 2022, 4:39:21 PM (8 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25872
- Property Cc deinst added
-
Property
Commit
changed from
to
672a1103fbc56f550a664485487a2acbc24b438a
-
Property
Branch
changed from
to
u/jlokesh/modular_decomposition_bug
-
Property
Milestone
changed from
sage-8.4
tosage-9.7
-
Ticket #25872 – Description
initial v13 2 2 sage: G1 = Graph('FwA]w') 3 3 sage: G2 = Graph('F@Nfg') 4 sage: G1.modular_decomposition( )4 sage: G1.modular_decomposition(algorithm='tedder') 5 5 (PRIME, [6, 2, 1, 5, 0, (PARALLEL, [3, 4])]) 6 sage: G2.modular_decomposition( )6 sage: G2.modular_decomposition(algorithm='tedder') 7 7 (PRIME, [6, 5, 0, 2, 3, 1, 4]) 8 8 sage: G1.is_isomorphic(G2) … … 10 10 }}} 11 11 12 I suppose #24898 was not enough t.12 I suppose #24898 was not enough.