# HG changeset patch
# User Jason Grout <jason-sage@creativetrax.com>
# Date 1253635307 18000
# Node ID c3721655976971b0dc66d9d30f020945ca2e0e50
# Parent 9b436d5d558f85c8ed5c33a4597dd5f29aa497b8
fixed typo in documentation.
diff -r 9b436d5d558f -r c37216559769 sage/graphs/cliquer.pyx
a
|
b
|
|
1 | 1 | r""" |
2 | 2 | Cliquer : routines for finding cliques in graphs |
3 | 3 | |
4 | | This module defines functions based on Cliquer, an exact branch-and-bound algorithm developped by Patric R. J. Ostergard and written by Sampo Niskanen. |
| 4 | This module defines functions based on Cliquer, an exact branch-and-bound algorithm developed by Patric R. J. Ostergard and written by Sampo Niskanen. |
5 | 5 | |
6 | 6 | AUTHORS: |
7 | 7 | |