From 4b3de648417df5656fd084467197ac0c8219c484 Mon Sep 17 00:00:00 2001 From: Glacialte Date: Tue, 15 Oct 2024 11:59:07 +0900 Subject: [PATCH] temporary change for reducing warnings --- exe/main.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/exe/main.cpp b/exe/main.cpp index d047924a..087d8cc3 100644 --- a/exe/main.cpp +++ b/exe/main.cpp @@ -39,11 +39,12 @@ void run() { Eigen::Matrix mat(4, 4); mat << 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15; - auto dense_gate = gate::DenseMatrix({1, 3}, mat); - std::cout << dense_gate << std::endl; + // 以下のコメントアウトは後で外す + // auto dense_gate = gate::DenseMatrix({1, 3}, mat); + // std::cout << dense_gate << std::endl; - auto sparse_gate = gate::SparseMatrix({2, 0}, mat.sparseView()); - std::cout << sparse_gate << std::endl; + // auto sparse_gate = gate::SparseMatrix({2, 0}, mat.sparseView()); + // std::cout << sparse_gate << std::endl; } int main() {