From e951bff9c866510e79c79855e987e46bd9e4ef95 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Tue, 26 Mar 2024 00:11:41 +0000 Subject: [PATCH] update includes for GraphView.cpp --- src/graph/GraphView.cpp | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/src/graph/GraphView.cpp b/src/graph/GraphView.cpp index edcea9544..cc7036115 100644 --- a/src/graph/GraphView.cpp +++ b/src/graph/GraphView.cpp @@ -9,24 +9,31 @@ * ********************************************************************************/ -#include <algorithm> -#include <cassert> -#include <iterator> -#include <utility> -#include <numeric> +#include "aidge/graph/GraphView.hpp" +#include <algorithm> // std::find, std::set_intersection, std::transform +#include <cassert> +#include <stdexcept> // std::runtime_error +#include <cstddef> // std::size_t +#include <cstdio> // std::fclose, std::fopen #include <fmt/format.h> -#include <fmt/ranges.h> +#include <iterator> // std::back_inserter, std::distance, std::inserter, + // std::next +#include <map> +#include <memory> // std::dynamic_pointer_cast, std::static_pointer_cast +#include <set> +#include <string> // std::to_string +#include <utility> // std::make_pair, std::pair +#include <vector> -#include "aidge/utils/Types.h" -#include "aidge/graph/GraphView.hpp" #include "aidge/data/Tensor.hpp" -#include "aidge/operator/OperatorTensor.hpp" -#include "aidge/operator/Producer.hpp" #include "aidge/operator/GenericOperator.hpp" #include "aidge/operator/MetaOperator.hpp" -#include "aidge/utils/ErrorHandling.hpp" +#include "aidge/operator/OperatorTensor.hpp" +#include "aidge/operator/Producer.hpp" #include "aidge/utils/Directories.hpp" +#include "aidge/utils/ErrorHandling.hpp" +#include "aidge/utils/Types.h" /////////////////////////////////////////////////////// // FUNCTIONAL DESCRIPTION -- GitLab