From 00b91098f6f8c8cd364921ba290506ecaf4335a9 Mon Sep 17 00:00:00 2001 From: Ilya Grigorev Date: Fri, 11 Oct 2024 11:19:12 +0500 Subject: [PATCH] remove unnecessary comments --- main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.cpp b/main.cpp index 29320fb..af0b85c 100644 --- a/main.cpp +++ b/main.cpp @@ -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; }