Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
aidge_core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Projects
aidge
aidge_core
Commits
07160e17
Commit
07160e17
authored
4 months ago
by
Octave Perrin
Browse files
Options
Downloads
Patches
Plain Diff
ordered
parent
2c7b1a89
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/aidge/graph/GraphView.hpp
+12
-1
12 additions, 1 deletion
include/aidge/graph/GraphView.hpp
with
12 additions
and
1 deletion
include/aidge/graph/GraphView.hpp
+
12
−
1
View file @
07160e17
...
@@ -188,9 +188,20 @@ public:
...
@@ -188,9 +188,20 @@ public:
/** @brief Assess if the given Node is an output Node of the GraphView object. */
/** @brief Assess if the given Node is an output Node of the GraphView object. */
bool
isOutputNode
(
const
NodePtr
&
nodePtr
)
const
;
bool
isOutputNode
(
const
NodePtr
&
nodePtr
)
const
;
/** @todo
/**
* @brief Orders the inputs of the GraphView
* @details The Inputs will be ordered in the same order as they come in the std::vector.
* Inputs missing from this vector will then be added as per their previous order.
* @param std::vector<std::pair<NodePtr, IOIndex_t>>& inputs set of inputs in the wanted order
*/
*/
void
setOrderedInputs
(
const
std
::
vector
<
std
::
pair
<
NodePtr
,
IOIndex_t
>>&
inputs
);
void
setOrderedInputs
(
const
std
::
vector
<
std
::
pair
<
NodePtr
,
IOIndex_t
>>&
inputs
);
/**
* @brief Orders the outputs of the GraphView
* @details The outputs will be ordered in the same order as they come in the std::vector.
* Outputs missing from this vector will then be added as per their previous order.
* @param std::vector<std::pair<NodePtr, IOIndex_t>>& outputs set of outputs in the wanted order
*/
void
setOrderedOutputs
(
const
std
::
vector
<
std
::
pair
<
NodePtr
,
IOIndex_t
>>&
outputs
);
void
setOrderedOutputs
(
const
std
::
vector
<
std
::
pair
<
NodePtr
,
IOIndex_t
>>&
outputs
);
/** @todo i don't understand the description
/** @todo i don't understand the description
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment