Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
eigenpy
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
Stack Of Tasks
eigenpy
Commits
eeb955a8
Verified
Commit
eeb955a8
authored
1 year ago
by
Justin Carpentier
Browse files
Options
Downloads
Patches
Plain Diff
core: use boost::numerics to simplify the code and make it more generic
parent
f9ef66b2
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/eigenpy/scalar-conversion.hpp
+5
-57
5 additions, 57 deletions
include/eigenpy/scalar-conversion.hpp
with
5 additions
and
57 deletions
include/eigenpy/scalar-conversion.hpp
+
5
−
57
View file @
eeb955a8
//
//
// Copyright (c) 2014-202
0
CNRS INRIA
// Copyright (c) 2014-202
4
CNRS INRIA
//
//
#ifndef __eigenpy_scalar_conversion_hpp__
#ifndef __eigenpy_scalar_conversion_hpp__
#define __eigenpy_scalar_conversion_hpp__
#define __eigenpy_scalar_conversion_hpp__
#include
"eigenpy/config.hpp"
#include
"eigenpy/config.hpp"
#include
<boost/numeric/conversion/conversion_traits.hpp>
namespace
eigenpy
{
namespace
eigenpy
{
template
<
typename
SCALAR1
,
typename
SCALAR2
>
template
<
typename
Source
,
typename
Target
>
struct
FromTypeToType
:
public
boost
::
false_type
{};
struct
FromTypeToType
:
public
boost
::
numeric
::
conversion_traits
<
Source
,
Target
>::
subranged
{};
template
<
typename
SCALAR
>
struct
FromTypeToType
<
SCALAR
,
SCALAR
>
:
public
boost
::
true_type
{};
template
<
>
struct
FromTypeToType
<
int
,
long
>
:
public
boost
::
true_type
{};
template
<
>
struct
FromTypeToType
<
int
,
float
>
:
public
boost
::
true_type
{};
template
<
>
struct
FromTypeToType
<
int
,
std
::
complex
<
float
>
>
:
public
boost
::
true_type
{};
template
<
>
struct
FromTypeToType
<
int
,
double
>
:
public
boost
::
true_type
{};
template
<
>
struct
FromTypeToType
<
int
,
std
::
complex
<
double
>
>
:
public
boost
::
true_type
{};
template
<
>
struct
FromTypeToType
<
int
,
long
double
>
:
public
boost
::
true_type
{};
template
<
>
struct
FromTypeToType
<
int
,
std
::
complex
<
long
double
>
>
:
public
boost
::
true_type
{};
template
<
>
struct
FromTypeToType
<
long
,
float
>
:
public
boost
::
true_type
{};
template
<
>
struct
FromTypeToType
<
long
,
std
::
complex
<
float
>
>
:
public
boost
::
true_type
{};
template
<
>
struct
FromTypeToType
<
long
,
double
>
:
public
boost
::
true_type
{};
template
<
>
struct
FromTypeToType
<
long
,
std
::
complex
<
double
>
>
:
public
boost
::
true_type
{};
template
<
>
struct
FromTypeToType
<
long
,
long
double
>
:
public
boost
::
true_type
{};
template
<
>
struct
FromTypeToType
<
long
,
std
::
complex
<
long
double
>
>
:
public
boost
::
true_type
{};
template
<
>
struct
FromTypeToType
<
float
,
std
::
complex
<
float
>
>
:
public
boost
::
true_type
{};
template
<
>
struct
FromTypeToType
<
float
,
double
>
:
public
boost
::
true_type
{};
template
<
>
struct
FromTypeToType
<
float
,
std
::
complex
<
double
>
>
:
public
boost
::
true_type
{
};
template
<
>
struct
FromTypeToType
<
float
,
long
double
>
:
public
boost
::
true_type
{};
template
<
>
struct
FromTypeToType
<
float
,
std
::
complex
<
long
double
>
>
:
public
boost
::
true_type
{};
template
<
>
struct
FromTypeToType
<
double
,
std
::
complex
<
double
>
>
:
public
boost
::
true_type
{
};
template
<
>
struct
FromTypeToType
<
double
,
long
double
>
:
public
boost
::
true_type
{};
template
<
>
struct
FromTypeToType
<
double
,
std
::
complex
<
long
double
>
>
:
public
boost
::
true_type
{};
}
// namespace eigenpy
}
// namespace eigenpy
#endif // __eigenpy_scalar_conversion_hpp__
#endif // __eigenpy_scalar_conversion_hpp__
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