Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dynamic-graph
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Guilhem Saurel
dynamic-graph
Commits
8ac26f93
Commit
8ac26f93
authored
13 years ago
by
Nicolas Mansard
Browse files
Options
Downloads
Patches
Plain Diff
Modify the policy for plugin a sigptr in input.
parent
e6aaab39
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/dynamic-graph/signal-ptr.h
+1
-0
1 addition, 0 deletions
include/dynamic-graph/signal-ptr.h
include/dynamic-graph/signal-ptr.t.cpp
+11
-0
11 additions, 0 deletions
include/dynamic-graph/signal-ptr.t.cpp
with
12 additions
and
0 deletions
include/dynamic-graph/signal-ptr.h
+
1
−
0
View file @
8ac26f93
...
@@ -107,6 +107,7 @@ namespace dynamicgraph
...
@@ -107,6 +107,7 @@ namespace dynamicgraph
{
setConstantDefault
(
accessCopy
()
);
}
{
setConstantDefault
(
accessCopy
()
);
}
inline
void
unsetConstantDefault
(){
modeNoThrow
=
false
;
}
inline
void
unsetConstantDefault
(){
modeNoThrow
=
false
;
}
virtual
void
checkCompatibility
();
public
:
/* --- INHERITANCE --- */
public
:
/* --- INHERITANCE --- */
...
...
This diff is collapsed.
Click to expand it.
include/dynamic-graph/signal-ptr.t.cpp
+
11
−
0
View file @
8ac26f93
...
@@ -135,6 +135,17 @@ namespace dynamicgraph
...
@@ -135,6 +135,17 @@ namespace dynamicgraph
dgTDEBUGOUT
(
5
);
dgTDEBUGOUT
(
5
);
}
}
template
<
class
T
,
class
Time
>
void
SignalPtr
<
T
,
Time
>::
checkCompatibility
()
{
if
(
isPluged
()
&&
(
!
autoref
())
)
{
getPtr
()
->
checkCompatibility
();
}
else
if
(
isAbstractPluged
()
&&
(
!
autoref
())
)
{
abstractTransmitter
->
checkCompatibility
();
}
else
Signal
<
T
,
Time
>::
checkCompatibility
();
}
template
<
class
T
,
class
Time
>
template
<
class
T
,
class
Time
>
bool
SignalPtr
<
T
,
Time
>::
bool
SignalPtr
<
T
,
Time
>::
needUpdate
(
const
Time
&
t
)
const
needUpdate
(
const
Time
&
t
)
const
...
...
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