Skip to content

Commit

Permalink
minors
Browse files Browse the repository at this point in the history
  • Loading branch information
Alirezalm committed Aug 3, 2023
1 parent a99ec17 commit b9bbd17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DOSE/src/Utilities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace dose::utilities
{
int rows = vec2d.size();
int cols = vec2d.front().size();
assert((rows > 0) && (cols > 0) && (rows >= cols));
// assert((rows > 0) && (cols > 0) && (rows >= cols));
checkColumnConsistency(vec2d, cols);

}
Expand Down
2 changes: 1 addition & 1 deletion src/Model/LogRegObjectiveFunction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ void LogRegObjectiveFunction::setObjectiveData(const VectorDouble2D &samples_dat
number_of_columns_ = static_cast<int>(samples_.front().size());

assert(number_of_columns_ > 0 && number_of_rows_ > 0);
assert(number_of_rows_ > number_of_columns_);
// assert(number_of_rows_ > number_of_columns_);
}
VectorDouble LogRegObjectiveFunction::getResponseData() {
assert(!response_.empty() && "make sure data is generated");
Expand Down

0 comments on commit b9bbd17

Please sign in to comment.