forked from stephens999/ashr
-
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.
Adjusted mixsqp settings; fixed a few of the tests.
- Loading branch information
Showing
4 changed files
with
18 additions
and
3 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
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,12 @@ | ||
# The Rmosek package on CRAN will not work with REBayes. This function | ||
# is used for some of the tests to check whether the correct Rmosek | ||
# package (the one downloaded from mosek.com) is installed. | ||
# | ||
#' @importFrom testthat skip_if_not_installed | ||
#' @importFrom testthat skip_if | ||
#' | ||
skip_if_mixkwdual_doesnt_work <- function() { | ||
skip_if_not_installed("REBayes") | ||
skip_if_not_installed("Rmosek") | ||
skip_if(!is.element("mosek_lptoprob",getNamespaceExports("Rmosek"))) | ||
} |
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