Fix remove row and column functions

This commit is contained in:
Ian Bell
2015-11-14 21:46:45 -07:00
parent ca3bcbe6b4
commit e119cbca29
2 changed files with 9 additions and 7 deletions

View File

@@ -65,9 +65,7 @@ TEST_CASE("Internal consistency checks and example use cases for MatrixMath.h","
SECTION("Matrix modifications") {
Eigen::MatrixXd matrix = CoolProp::vec_to_eigen(cHeat2D);
std::string tmpStr;
std::vector<std::vector<double> > vec2D;
if (PRINT) std::cout << std::endl;
if (PRINT) std::cout << CoolProp::mat_to_string(matrix) << std::endl;
CHECK_NOTHROW( CoolProp::removeColumn(matrix,1) );
if (PRINT) std::cout << CoolProp::mat_to_string(matrix) << std::endl;