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
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
Cyril Moineau
aidge_core
Commits
de0f33b3
Commit
de0f33b3
authored
1 year ago
by
Maxence Naud
Browse files
Options
Downloads
Patches
Plain Diff
fix function declaration duplicates
parent
25260e43
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/aidge/graph/GraphView.hpp
+10
-0
10 additions, 0 deletions
include/aidge/graph/GraphView.hpp
src/graph/GraphView.cpp
+0
-2
0 additions, 2 deletions
src/graph/GraphView.cpp
with
10 additions
and
2 deletions
include/aidge/graph/GraphView.hpp
+
10
−
0
View file @
de0f33b3
...
...
@@ -128,7 +128,17 @@ public:
void
setOrderedInputs
(
const
std
::
vector
<
std
::
pair
<
NodePtr
,
IOIndex_t
>>&
inputs
);
void
setOrderedOutputs
(
const
std
::
vector
<
std
::
pair
<
NodePtr
,
IOIndex_t
>>&
outputs
);
/**
* @brief Get inputs of the current GraphView with their associated id.
* The rank of the nodes are their rank in the vector.
* @return const std::vector<std::pair<NodePtr, IOIndex_t>>&
*/
inline
const
std
::
vector
<
std
::
pair
<
NodePtr
,
IOIndex_t
>>&
getOrderedInputs
()
const
noexcept
{
return
mInputNodes
;
};
/**
* @brief Get outputs of the current GraphView with their associated id.
* The rank of the nodes are their rank in the vector.
* @return const std::vector<std::pair<NodePtr, IOIndex_t>>&
*/
inline
const
std
::
vector
<
std
::
pair
<
NodePtr
,
IOIndex_t
>>&
getOrderedOutputs
()
const
noexcept
{
return
mOutputNodes
;
};
/**
...
...
This diff is collapsed.
Click to expand it.
src/graph/GraphView.cpp
+
0
−
2
View file @
de0f33b3
...
...
@@ -72,9 +72,7 @@ Aidge::Connector Aidge::GraphView::operator()(
bool
Aidge
::
GraphView
::
inView
(
const
std
::
shared_ptr
<
Aidge
::
Node
>&
nodePtr
)
const
{
return
mNodes
.
find
(
nodePtr
)
!=
mNodes
.
cend
();
}
std
::
string
Aidge
::
GraphView
::
name
()
const
{
return
mName
;
}
void
Aidge
::
GraphView
::
setName
(
const
std
::
string
&
name
)
{
mName
=
name
;
}
void
Aidge
::
GraphView
::
save
(
const
std
::
string
&
path
,
bool
verbose
,
bool
showProducers
)
const
{
auto
fp
=
std
::
unique_ptr
<
FILE
,
decltype
(
&
std
::
fclose
)
>
(
std
::
fopen
((
path
+
".mmd"
).
c_str
(),
"w"
),
&
std
::
fclose
);
...
...
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