remove unnecessary comments

This commit is contained in:
Ilya Grigorev
2024-10-11 11:19:12 +05:00
parent d8735c3d44
commit 00b91098f6
+2 -2
View File
@@ -188,14 +188,14 @@ int TEST_GENERAL_CASE()
if (!check_eq(result.objective_function_value, 21))
{
std::cout << "Incorrect objective function value. Expected 21. Got " // ЭТО УДАЛИТЬ?
std::cout << "Incorrect objective function value. Expected 21. Got "
<< result.objective_function_value << std::endl;
return 0;
}
if (!(check_eq(result.solution[0], 3) && check_eq(result.solution[1], 1.5)))
{
std::cout << "Incorrect desire variables. Expected 3 and 1.5. Got " // ЭТО УДАЛИТЬ?
std::cout << "Incorrect desire variables. Expected 3 and 1.5. Got "
<< result.solution;
return 0;
}