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

Commit

Permalink
trac #16388: a missing one in BIBD_from_TD
Browse files Browse the repository at this point in the history
  • Loading branch information
videlec committed Jun 5, 2014
1 parent c365a39 commit ec26ca2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/combinat/designs/bibd.py
Expand Up @@ -118,7 +118,7 @@ def BalancedIncompleteBlockDesign(v,k,existence=False,use_LJCR=False):
sage: designs.BalancedIncompleteBlockDesign(16,6)
Traceback (most recent call last):
...
NotImplementedError: I don't know how to build this design.
NotImplementedError: I don't know how to build a BIBD(16,6,1)!
TESTS::
Expand Down Expand Up @@ -215,7 +215,7 @@ def BalancedIncompleteBlockDesign(v,k,existence=False,use_LJCR=False):
if existence:
return Unknown
else:
raise NotImplementedError("I don't know how to build this design.")
raise NotImplementedError("I don't know how to build a BIBD({},{},1)!".format(v,k))

def steiner_triple_system(n):
r"""
Expand Down

0 comments on commit ec26ca2

Please sign in to comment.