-
Notifications
You must be signed in to change notification settings - Fork 6
Isolate Cereal #153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Isolate Cereal #153
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
6faa43f
Switch Prior from being a pointer to an abstract class, to being a va…
akleeman 7790694
Move all serialization methods into the cereal directory
akleeman b11b7e5
Remove unused files
akleeman bec695a
Split the serialization includes apart, this avoids needing to
akleeman fc8b4be
Add similar includes for the utils which are commonly used on their own
akleeman f62bb7e
Seth's changes
akleeman 1fd2bc3
Joseph's comments
akleeman 6b94299
Change relative paths to include paths
akleeman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,27 @@ | ||
| /* | ||
| * Copyright (C) 2019 Swift Navigation Inc. | ||
| * Contact: Swift Navigation <dev@swiftnav.com> | ||
| * | ||
| * This source is subject to the license found in the file 'LICENSE' which must | ||
| * be distributed together with this source. All other rights reserved. | ||
| * | ||
| * THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, | ||
| * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED | ||
| * WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. | ||
| */ | ||
|
|
||
| #ifndef ALBATROSS_SERIALIZE_COMMON_H | ||
| #define ALBATROSS_SERIALIZE_COMMON_H | ||
|
|
||
| #include <cereal/cereal.hpp> | ||
| #include <cereal/archives/binary.hpp> | ||
| #include <cereal/archives/json.hpp> | ||
| #include <cereal/archives/xml.hpp> | ||
| #include <cereal/types/map.hpp> | ||
| #include <cereal/types/string.hpp> | ||
| #include <cereal/types/vector.hpp> | ||
|
|
||
| #include "../src/cereal/traits.hpp" | ||
| #include "../src/cereal/eigen.hpp" | ||
|
|
||
| #endif | ||
This file contains hidden or 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,26 @@ | ||
| /* | ||
| * Copyright (C) 2019 Swift Navigation Inc. | ||
| * Contact: Swift Navigation <dev@swiftnav.com> | ||
| * | ||
| * This source is subject to the license found in the file 'LICENSE' which must | ||
| * be distributed together with this source. All other rights reserved. | ||
| * | ||
| * THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, | ||
| * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED | ||
| * WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. | ||
| */ | ||
|
|
||
| #ifndef ALBATROSS_SERIALIZE_CORE_H | ||
| #define ALBATROSS_SERIALIZE_CORE_H | ||
|
|
||
| #include "Common" | ||
|
|
||
| #include "../src/cereal/dataset.hpp" | ||
| #include "../src/cereal/distribution.hpp" | ||
| #include "../src/cereal/fit_model.hpp" | ||
| #include "../src/cereal/priors.hpp" | ||
| #include "../src/cereal/model.hpp" | ||
| #include "../src/cereal/parameters.hpp" | ||
| #include "../src/cereal/variant.hpp" | ||
|
|
||
| #endif |
This file contains hidden or 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,20 @@ | ||
| /* | ||
| * Copyright (C) 2019 Swift Navigation Inc. | ||
| * Contact: Swift Navigation <dev@swiftnav.com> | ||
| * | ||
| * This source is subject to the license found in the file 'LICENSE' which must | ||
| * be distributed together with this source. All other rights reserved. | ||
| * | ||
| * THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, | ||
| * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED | ||
| * WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. | ||
| */ | ||
|
|
||
| #ifndef ALBATROSS_SERIALIZE_EVALUATION_H | ||
| #define ALBATROSS_SERIALIZE_EVALUATION_H | ||
|
|
||
| #include "Core" | ||
|
|
||
| #include "../src/cereal/evaluation.hpp" | ||
|
|
||
| #endif |
This file contains hidden or 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,23 @@ | ||
| /* | ||
| * Copyright (C) 2019 Swift Navigation Inc. | ||
| * Contact: Swift Navigation <dev@swiftnav.com> | ||
| * | ||
| * This source is subject to the license found in the file 'LICENSE' which must | ||
| * be distributed together with this source. All other rights reserved. | ||
| * | ||
| * THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, | ||
| * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED | ||
| * WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. | ||
| */ | ||
|
|
||
| #ifndef ALBATROSS_SERIALIZE_GP_H | ||
| #define ALBATROSS_SERIALIZE_GP_H | ||
|
|
||
| #include "Core" | ||
|
|
||
| #include "../src/cereal/block_utils.hpp" | ||
| #include "../src/cereal/serializable_ldlt.hpp" | ||
| #include "../src/cereal/gp.hpp" | ||
| #include "../src/cereal/representations.hpp" | ||
|
|
||
| #endif |
This file contains hidden or 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,20 @@ | ||
| /* | ||
| * Copyright (C) 2019 Swift Navigation Inc. | ||
| * Contact: Swift Navigation <dev@swiftnav.com> | ||
| * | ||
| * This source is subject to the license found in the file 'LICENSE' which must | ||
| * be distributed together with this source. All other rights reserved. | ||
| * | ||
| * THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, | ||
| * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED | ||
| * WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. | ||
| */ | ||
|
|
||
| #ifndef ALBATROSS_SERIALIZE_LEAST_SQUARES_H | ||
| #define ALBATROSS_SERIALIZE_LEAST_SQUARES_H | ||
|
|
||
| #include "Core" | ||
|
|
||
| #include "../src/cereal/least_squares.hpp" | ||
|
|
||
| #endif |
This file contains hidden or 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,20 @@ | ||
| /* | ||
| * Copyright (C) 2019 Swift Navigation Inc. | ||
| * Contact: Swift Navigation <dev@swiftnav.com> | ||
| * | ||
| * This source is subject to the license found in the file 'LICENSE' which must | ||
| * be distributed together with this source. All other rights reserved. | ||
| * | ||
| * THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, | ||
| * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED | ||
| * WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. | ||
| */ | ||
|
|
||
| #ifndef ALBATROSS_SERIALIZE_RANSAC_H | ||
| #define ALBATROSS_SERIALIZE_RANSAC_H | ||
|
|
||
| #include "Core" | ||
|
|
||
| #include "../src/cereal/ransac.hpp" | ||
|
|
||
| #endif |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Relative paths like this in include paths aren't great (they tend to break when porting to different systems(, and cause generally be avoided by setting the include paths you want. Would a path like
albatross/src/cereal/traits.hppwork?