From a301642f077a8dda9aa5054d201064157199a7da Mon Sep 17 00:00:00 2001 From: Octave Perrin <operrin@lrtechnologies.fr> Date: Wed, 13 Nov 2024 16:20:11 +0100 Subject: [PATCH] outputs --- include/aidge/graph/GraphView.hpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/include/aidge/graph/GraphView.hpp b/include/aidge/graph/GraphView.hpp index cae3beaf4..edd91ef06 100644 --- a/include/aidge/graph/GraphView.hpp +++ b/include/aidge/graph/GraphView.hpp @@ -267,10 +267,11 @@ public: */ std::vector<std::pair<NodePtr, IOIndex_t>> inputs(const std::string& name) const; - /** @todo weird things happening here with this outsideoutputpos - * @brief List outside output connections of the GraphView. The vector - * size is guaranteed to match the number of outputs of the GraphView. If there is - * no connection to a given output, the corresponding sub-vector will be empty. + /** + * @brief List outside output connections of the GraphView. + * @details The vector size is guaranteed to match the number of outputs of the GraphView. + * If there is no connection to a given output, the corresponding sub-vector will be empty. + * @TODO: doesn't seem to work if new nodes should be added, it seem to only update the connection of already output nodes * @return std::vector<std::pair<NodePtr, IOIndex_t>> */ std::vector<std::vector<std::pair<NodePtr, IOIndex_t>>> outputs() const; -- GitLab