# HG changeset patch
# User Mike Hansen <mhansen@gmail.com>
# Date 1332020433 25200
# Node ID 1c865310cd907d62a4b2cff4761eb07c0bd34924
# Parent ce2f9ec5e25790e605bc9bdadcac6ccd616773a3
#12684: Rename sage/graphs/graph_decompositions/rankwidth/
diff --git a/sage/graphs/graph_decompositions/rankwidth.pxd b/sage/graphs/graph_decompositions/rankwidth.pxd
|
a
|
b
|
|
| 4 | 4 | ctypedef int uint_fast32_t "uint_fast32_t" |
| 5 | 5 | ctypedef int subset_t "uint_least32_t" |
| 6 | 6 | |
| 7 | | cdef extern from "rankwidth/rw.h": |
| | 7 | cdef extern from "rankwidth_c/rw.h": |
| 8 | 8 | int init_rw_dec(uint_fast8_t n) |
| 9 | 9 | void destroy_rw() |
| 10 | 10 | void calculate_level(uint_fast8_t subset_size) |
| … |
… |
|
| 13 | 13 | subset_t *slots |
| 14 | 14 | subset_t *adjacency_matrix |
| 15 | 15 | |
| 16 | | cdef extern from "rankwidth/rw.c": |
| | 16 | cdef extern from "rankwidth_c/rw.c": |
| 17 | 17 | uint_fast8_t subset_size |
| 18 | 18 | uint_fast8_t num_vertices |
| 19 | 19 | |
diff --git a/sage/graphs/graph_decompositions/rankwidth/__init__.py b/sage/graphs/graph_decompositions/rankwidth/__init__.py
deleted file mode 100644
|
+
|
-
|
|
| 1 | | # This file is not empty ! |