Re: [sage-support] Sage Docker images are outdated: still on Sage 9.7

2023-06-19 Thread Beth Claire
I saw the cocalc docker, and yeah, it's too big to run on my laptop. On Monday, June 19, 2023 at 5:07:54 PM UTC-4 William Stein wrote: > On Mon, Jun 19, 2023 at 1:19 PM William Stein wrote: > > > > On Mon, Jun 19, 2023 at 11:58 AM Beth Claire <318...@gmail.com> wro

[sage-support] Sage Docker images are outdated: still on Sage 9.7

2023-06-19 Thread Beth Claire
The docker image available here: https://hub.docker.com/r/sagemath/sagemath Has not been updated since Sagemath 9.7. Is that image supported by the sage team? Is there another image I should use? Thanks, Beth -- You received this message because you are subscribed to the Google Groups "sage-s

Re: [sage-support] List all shortest paths between two vertices in a graph

2021-08-25 Thread Beth Claire
u, v)) > 35.9 µs ± 159 ns per loop (mean ± std. dev. of 7 runs, 1 loops each) > sage: %timeit list(filter(lambda x: len(x) == 1+G.distance(u, v), > G.shortest_simple_paths(u, v))) > 66.6 ms ± 180 µs per loop (mean ± std. dev. of 7 runs, 10 loops each) > > > Jean-Florent. > > L

[sage-support] List all shortest paths between two vertices in a graph

2021-08-23 Thread Beth Claire
Hi, Given an undirected graph G, and two vertices u and v of G, I want to list all paths from u to v with a length of d_G(u,v). The built-in function shortest_simple_paths