-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
12faec5
commit c23d7c0
Showing
18 changed files
with
509 additions
and
745 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
..._planners/descartes/include/tesseract_motion_planners/descartes/descartes_solver_config.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/** | ||
* @file descartes_solver_config.h | ||
* @brief Tesseract Descartes Solver Config | ||
* | ||
* @author Levi Armstrong | ||
* @date June 25, 2020 | ||
* @version TODO | ||
* @bug No known bugs | ||
* | ||
* @copyright Copyright (c) 2020, Southwest Research Institute | ||
* | ||
* @par License | ||
* Software License Agreement (Apache License) | ||
* @par | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* @par | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
#ifndef TESSERACT_MOTION_PLANNERS_DESCARTES_SOLVER_CONFIG_H | ||
#define TESSERACT_MOTION_PLANNERS_DESCARTES_SOLVER_CONFIG_H | ||
|
||
#include <boost/serialization/access.hpp> | ||
#include <boost/serialization/export.hpp> | ||
|
||
namespace tesseract_planning | ||
{ | ||
struct DescartesSolverConfig | ||
{ | ||
/** @brief Number of threads to use during planning */ | ||
int num_threads{ 1 }; | ||
|
||
protected: | ||
friend class boost::serialization::access; | ||
template <class Archive> | ||
void serialize(Archive& ar, const unsigned int); // NOLINT | ||
}; | ||
|
||
} // namespace tesseract_planning | ||
|
||
BOOST_CLASS_EXPORT_KEY(tesseract_planning::DescartesSolverConfig) | ||
|
||
#endif // TESSERACT_MOTION_PLANNERS_DESCARTES_SOLVER_CONFIG_H |
56 changes: 0 additions & 56 deletions
56
...eract_motion_planners/descartes/include/tesseract_motion_planners/descartes/deserialize.h
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.