-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add NEWS.md. * Update version number. * Import combn from utils. * Fix formatting in NEWS.md.
- Loading branch information
1 parent
b32f658
commit 631047f
Showing
4 changed files
with
13 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: wallis | ||
Title: Room squares in R | ||
Version: 0.0.0.9007 | ||
Version: 0.1.0 | ||
Authors@R: | ||
person("Matthew", "Henderson", , "[email protected]", role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0001-7949-8208")) | ||
|
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 |
---|---|---|
|
@@ -10,3 +10,4 @@ export(n_filled_cells) | |
export(unused_pairs) | ||
export(volume) | ||
importFrom(R6,R6Class) | ||
importFrom(utils,combn) |
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,9 @@ | ||
# wallis (development version) | ||
|
||
# wallis 0.1.0 | ||
|
||
* A new package containing functions for implementing greedy algorithms for constructing maximal partial Room squares. | ||
* Functions for testing if squares are partial Room squares, Room squares or maximal partial Room squares. | ||
* Functions for calculating the volume of partial Room squares. | ||
* A Room R6 class provided as an alternative interface for algorithm implementation. | ||
* Some convenient combinatorial functions for constructing sets of pairs. |
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