Changeset 7814:19e061cffeea
- Timestamp:
- 12/19/07 20:50:33 (6 years ago)
- Branch:
- default
- File:
-
- 1 edited
-
sage/graphs/graph_fast.pyx (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sage/graphs/graph_fast.pyx
r7161 r7814 244 244 mpz_init(i) 245 245 mpz_set_ui(i,n) 246 return mpz_get_str(NULL, 2, i) 246 cdef char* s=mpz_get_str(NULL, 2, i) 247 t=str(s) 248 free(s) 249 mpz_clear(i) 250 return t 247 251 248 252 def R(x):
Note: See TracChangeset
for help on using the changeset viewer.
