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

Commit

Permalink
replaced long doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivo-Maffei committed Aug 30, 2020
1 parent 339b4f5 commit 4675366
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/sage/graphs/generators/distance_regular.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -626,9 +626,12 @@ def BilinearFormsGraph(const int d, const int e, const int q):
sage: G = graphs.BilinearFormsGraph(3, 3, 2)
sage: G.is_distance_regular(True)
([49, 36, 16, None], [None, 1, 6, 28])
sage: G = graphs.BilinearFormsGraph(3,3,3) # long time (20 s)
sage: G.order() # long time (due to above)
sage: G = graphs.BilinearFormsGraph(3,3,3) # not tested (20 s)
sage: G.order() # not tested (due to above)
19683
sage: G = graphs.BilinearFormsGraph(3, 4, 2)
sage: G.is_distance_regular(True)
([105, 84, 48, None], [None, 1, 6, 28])
REFERENCES:
Expand Down

0 comments on commit 4675366

Please sign in to comment.