-
-
Notifications
You must be signed in to change notification settings - Fork 509
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from Aaron-Dwyer/coveringarray
Coveringarray
- Loading branch information
Showing
5 changed files
with
236 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
r""" | ||
Covering Arrays (CA) | ||
A Covering Array, denoted CA`(N,k,v,t)`, is an `n` by `k` array with | ||
entries from a set of `v` elements with the property that in every | ||
selection of `t` columns, eachrow contains every sequence of | ||
`t`-elements at least once. | ||
An Orthogonal Array, denoted OA`(N,k,v,t)` is a covering array with the | ||
property that each row contains every sequence of `t`-elements exactly | ||
once | ||
REFERENCES: | ||
- [Colb2004]_ | ||
- [Sher2006]_ | ||
- [Wal2007]_ | ||
AUTHORS: | ||
- Aaron Dwyer and brett stevens (2022): initial version | ||
.. TODO:: | ||
Implement various construction methods for CAs | ||
Functions | ||
--------- | ||
""" | ||
|
||
# ********************************************************************** | ||
# Copyright (C) 2022 Aaron Dwyer <[email protected]> | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 2 of the License, or | ||
# (at your option) any later version. | ||
# https://www.gnu.org/licenses/ | ||
# ********************************************************************** | ||
|
||
from .orthogonal_arrays import OA_relabel, OA_standard_label | ||
CA_relabel = OA_relabel | ||
CA_standard_label = OA_standard_label |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.