Skip to content

Commit

Permalink
Merge 9354f17 into 735d457
Browse files Browse the repository at this point in the history
  • Loading branch information
mnwright committed Jun 1, 2018
2 parents 735d457 + 9354f17 commit d4a4c0a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
@@ -1,7 +1,7 @@
Package: ranger
Type: Package
Title: A Fast Implementation of Random Forests
Version: 0.10.0
Version: 0.10.1
Date: 2018-05-29
Author: Marvin N. Wright [aut, cre], Stefan Wager [ctb], Philipp Probst [ctb]
Maintainer: Marvin N. Wright <cran@wrig.de>
Expand Down
3 changes: 3 additions & 0 deletions NEWS
@@ -1,3 +1,6 @@
##### Version 0.10.1
* Bug fixes

##### Version 0.10.0
* Change license of C++ core to MIT (R package is still GPL3)
* Better 'order' mode for unordered factors for multiclass and survival
Expand Down
3 changes: 3 additions & 0 deletions NEWS.md
@@ -1,3 +1,6 @@
##### Version 0.10.1
* Bug fixes

##### Version 0.10.0
* New CRAN version

Expand Down
2 changes: 1 addition & 1 deletion cpp_version/src/version.h
@@ -1,3 +1,3 @@
#ifndef RANGER_VERSION
#define RANGER_VERSION "0.10.0"
#define RANGER_VERSION "0.10.1"
#endif
4 changes: 4 additions & 0 deletions src/rangerCpp.cpp
Expand Up @@ -267,6 +267,10 @@ Rcpp::List rangerCpp(uint treetype, std::string dependent_variable_name, Rcpp::N
}
result.push_back(forest_object, "forest");
}

if (!verbose) {
delete verbose_out;
}
} catch (std::exception& e) {
if (strcmp(e.what(), "User interrupt.") != 0) {
Rcpp::Rcerr << "Error: " << e.what() << " Ranger will EXIT now." << std::endl;
Expand Down

0 comments on commit d4a4c0a

Please sign in to comment.