Skip to content

Commit

Permalink
trac #14349: move cl.* to cliquer/
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanncohen committed Jan 8, 2014
1 parent 25edb2f commit 6253068
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/module_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ def uname_specific(name, value, alternative):
libraries = ['gmp']),

Extension('sage.graphs.cliquer',
sources = ['sage/graphs/cliquer.pyx', 'sage/graphs/cl.c'],
sources = ['sage/graphs/cliquer.pyx', 'sage/graphs/cliquer/cl.c'],
libraries = ['cliquer']),

Extension('sage.graphs.graph_decompositions.vertex_separation',
Expand Down
2 changes: 1 addition & 1 deletion src/sage/graphs/cliquer.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ cdef extern from "cliquer/cliquer.h":
bint clique_print_time(intlevel, int i, int n, int max, double cputime, double realtime, clique_options *opts)


cdef extern from "cl.h":
cdef extern from "cliquer/cl.h":
cdef int sage_clique_max(graph_t *g, int ** list)
cdef int sage_all_clique_max(graph_t *g, int ** list)
cdef int sage_clique_number(graph_t *g)
Expand Down
2 changes: 1 addition & 1 deletion src/sage/graphs/cl.c → src/sage/graphs/cliquer/cl.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "sage/graphs/cl.h"
#include "cl.h"
#include "cliquer/cliquer.h"

static int maximal;
Expand Down
File renamed without changes.

0 comments on commit 6253068

Please sign in to comment.