-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
126 additions
and
103 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
repos: | ||
- repo: https://github.com/Quantco/pre-commit-mirrors-prettier | ||
rev: 3.2.5 | ||
hooks: | ||
- id: prettier-conda | ||
files: \.(md|yml|yaml)$ | ||
- repo: https://github.com/Quantco/pre-commit-mirrors-pre-commit-hooks | ||
rev: 4.6.0 | ||
hooks: | ||
- id: trailing-whitespace-conda | ||
- id: end-of-file-fixer-conda | ||
- id: check-merge-conflict-conda | ||
args: ["--assume-in-merge"] | ||
- repo: https://github.com/Quantco/pre-commit-mirrors-typos | ||
rev: 1.24.5 | ||
hooks: | ||
- id: typos-conda | ||
- repo: https://github.com/Quantco/pre-commit-mirrors-clang-format | ||
rev: 18.1.8 | ||
hooks: | ||
- id: clang-format-conda |
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,69 +1,68 @@ | ||
# matchingR 1.3.3 | ||
|
||
* Fixed unit test for validate functions that caused a CRAN check to fail. | ||
- Fixed unit test for validate functions that caused a CRAN check to fail. | ||
|
||
# matchingR 1.3.2 | ||
|
||
* Fix vignette index. | ||
- Fix vignette index. | ||
|
||
# matchingR 1.3.1 | ||
|
||
* Add dummy roommate when number of roommates is odd [#37](https://github.com/jtilly/matchingR/issues/37) | ||
* Run code base through `styler` and `lintr` | ||
- Add dummy roommate when number of roommates is odd [#37](https://github.com/jtilly/matchingR/issues/37) | ||
- Run code base through `styler` and `lintr` | ||
|
||
# matchingR 1.3.0 | ||
|
||
* Allow colleges to have different numbers of slots [#31](https://github.com/jtilly/matchingR/issues/31) | ||
* Change row names in vignette [#34](https://github.com/jtilly/matchingR/issues/34) | ||
* Remove need for microbenchmark package [#35](https://github.com/jtilly/matchingR/issues/35) | ||
* Registration of entry points in compiled code | ||
- Allow colleges to have different numbers of slots [#31](https://github.com/jtilly/matchingR/issues/31) | ||
- Change row names in vignette [#34](https://github.com/jtilly/matchingR/issues/34) | ||
- Remove need for microbenchmark package [#35](https://github.com/jtilly/matchingR/issues/35) | ||
- Registration of entry points in compiled code | ||
|
||
# matchingR 1.2.2 | ||
|
||
This is a minor update. | ||
This is a minor update. | ||
|
||
* Colleges may have different numbers of slots in the college admissions problem ([#30](https://github.com/jtilly/matchingR/issues/30)) | ||
- Colleges may have different numbers of slots in the college admissions problem ([#30](https://github.com/jtilly/matchingR/issues/30)) | ||
|
||
# matchingR 1.2.1 | ||
|
||
This is a minor update. | ||
This is a minor update. | ||
|
||
* Fixed bug in galeShapley.checkStability that resulted in UBSAN throwing an error | ||
- Fixed bug in galeShapley.checkStability that resulted in UBSAN throwing an error | ||
|
||
# matchingR 1.2 | ||
|
||
* Fixed a bug in the stable roommate matching algorithm that caused | ||
problems on Mac OS X / clang | ||
* Changed function names throughout the package (deprecated old function names) | ||
* Updated documentation | ||
* Added tests | ||
* Removed option to define preferences in row major order | ||
- Fixed a bug in the stable roommate matching algorithm that caused | ||
problems on Mac OS X / clang | ||
- Changed function names throughout the package (deprecated old function names) | ||
- Updated documentation | ||
- Added tests | ||
- Removed option to define preferences in row major order | ||
|
||
# matchingR 1.1.1 | ||
|
||
This is a minor update. | ||
|
||
* It fixes a memory leak warning in the stable roommate algorithm. | ||
* It includes minor edits of the vignettes and documentation. | ||
* We have substantially shortened the computational performance vignette | ||
so that the package can be built and checked faster | ||
This is a minor update. | ||
|
||
- It fixes a memory leak warning in the stable roommate algorithm. | ||
- It includes minor edits of the vignettes and documentation. | ||
- We have substantially shortened the computational performance vignette | ||
so that the package can be built and checked faster | ||
|
||
# matchingR 1.1 | ||
|
||
This is a major update that added additional algorithms to the package. | ||
|
||
* Added algorithm to compute a solution to the stable roommate problem | ||
(`roommate`) | ||
* Added top trading cycle algorithm (`toptrading`) | ||
* Switched the layout of preference matrices from row order to column order | ||
to make the code faster | ||
* Added two vignettes: An introductory vignette to the package in general | ||
and a computational performance vignette | ||
- Added algorithm to compute a solution to the stable roommate problem | ||
(`roommate`) | ||
- Added top trading cycle algorithm (`toptrading`) | ||
- Switched the layout of preference matrices from row order to column order | ||
to make the code faster | ||
- Added two vignettes: An introductory vignette to the package in general | ||
and a computational performance vignette | ||
|
||
# matchingR 1.0.1 | ||
|
||
Initial release that computes two versions of the Gale-Shapley algorithm: | ||
* Stable Marriage Problem | ||
* College Admissions Problem | ||
|
||
- Stable Marriage Problem | ||
- College Admissions Problem |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,4 +1,4 @@ | ||
CXX_STD = CXX11 | ||
PKG_CPPFLAGS = -I../inst/include | ||
PKG_CXXFLAGS = $(SHLIB_OPENMP_CXXFLAGS) | ||
PKG_LIBS = $(SHLIB_OPENMP_CXXFLAGS) $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS) | ||
PKG_LIBS = $(SHLIB_OPENMP_CXXFLAGS) $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS) |
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.