Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
make class final
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Kliem committed Dec 21, 2019
1 parent 47a3897 commit 7d70aaf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/sage/graphs/base/sparse_graph.pxd
Expand Up @@ -9,6 +9,7 @@
#*****************************************************************************

from .c_graph cimport CGraph, CGraphBackend
cimport cython

cdef struct SparseGraphLLNode:
int label
Expand All @@ -22,6 +23,7 @@ cdef struct SparseGraphBTNode:
SparseGraphBTNode *left
SparseGraphBTNode *right

@cython.final
cdef class SparseGraph(CGraph):
cdef int hash_length
cdef int hash_mask
Expand Down

0 comments on commit 7d70aaf

Please sign in to comment.