Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Simox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Florian Leander Singer
Simox
Commits
1336cca4
Commit
1336cca4
authored
2 years ago
by
Rainer Kartmann
Browse files
Options
Downloads
Patches
Plain Diff
Disable other assertions that dont compile in debug
parent
d2daea40
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
GeometricPlanning/ArticulatedObjectDoorHelper.cpp
+4
-1
4 additions, 1 deletion
GeometricPlanning/ArticulatedObjectDoorHelper.cpp
with
4 additions
and
1 deletion
GeometricPlanning/ArticulatedObjectDoorHelper.cpp
+
4
−
1
View file @
1336cca4
...
...
@@ -20,7 +20,7 @@ namespace simox::geometric_planning
ArticulatedObjectDoorHelper
::
planInteraction
(
const
std
::
string
&
nodeSetName
)
const
{
const
auto
rns
=
object
->
getRobotNodeSet
(
nodeSetName
);
REQUIRE_MESSAGE
(
rns
!=
nullptr
,
"Robot node set `"
<<
nodeSetName
<<
"` does not exist!"
);
//
REQUIRE_MESSAGE(rns != nullptr, "Robot node set `" << nodeSetName << "` does not exist!");
const
std
::
string
jointNodeName
=
nodeSetName
+
constants
::
JointSuffix
;
const
std
::
string
handleNodeName
=
nodeSetName
+
constants
::
HandleSuffix
;
...
...
@@ -28,9 +28,12 @@ namespace simox::geometric_planning
const
auto
checkNodeExists
=
[
&
rns
,
&
nodeSetName
]([[
maybe_unused
]]
const
std
::
string
&
nodeName
)
{
(
void
)
rns
,
(
void
)
nodeSetName
;
/*
REQUIRE_MESSAGE(rns->hasRobotNode(nodeName),
"Robot node `" << nodeName + "` does not exist within robot node set `"
<< nodeSetName << "`!");
*/
};
for
(
const
auto
&
nodeName
:
{
jointNodeName
,
handleNodeName
,
surfaceProjectionNodeName
})
...
...
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