# HG changeset patch
# User Robert L. Miller <rlm@rlmiller.org>
# Date 1248114355 25200
# Node ID 2ffe6afcfa28296b062afc3c54f3f3b5e0778c91
# Parent 746c758fbc3c2e1cbed51ac32461586c7fdd9056
#5793: Debugging purposes only!!!!
diff -r 746c758fbc3c -r 2ffe6afcfa28 sage/ext/cliquer.pxd
a
|
b
|
|
1 | 1 | cdef extern from "cliquer/graph.h": |
2 | 2 | struct graph_t: |
3 | 3 | pass |
| 4 | cdef void graph_print(graph_t *g) |
4 | 5 | |
5 | 6 | cdef extern from "cliquer/cliquer.h": |
6 | 7 | struct clique_options: |
diff -r 746c758fbc3c -r 2ffe6afcfa28 sage/graphs/cliquer.pyx
a
|
b
|
|
9 | 9 | parse_input(buf,g) |
10 | 10 | |
11 | 11 | for e in graph.edge_iterator(): |
12 | | (u,v,w)=e |
13 | | buf=' e %d %d' %(u,v) |
14 | | parse_input(buf,g) |
15 | | |
| 12 | print e |
| 13 | (u,v,w)=e |
| 14 | buf=' e %d %d' %(u,v) |
| 15 | print buf |
| 16 | parse_input(buf,g) |
| 17 | graph_print(g) |
16 | 18 | |
17 | 19 | cdef int* list |
18 | 20 | cdef int size |