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
92f9eb14
Commit
92f9eb14
authored
8 years ago
by
Justin Carpentier
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #12 from jcarpent/devel
Fix bug in multiple dynamic link of the lib
parents
1065425e
3fb62039
No related branches found
Branches containing commit
Tags
1.3.1
v1.3.1
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CMakeLists.txt
+0
-1
0 additions, 1 deletion
CMakeLists.txt
src/details.cpp
+0
-22
0 additions, 22 deletions
src/details.cpp
src/details.hpp
+21
-13
21 additions, 13 deletions
src/details.hpp
with
21 additions
and
36 deletions
CMakeLists.txt
+
0
−
1
View file @
92f9eb14
...
...
@@ -108,7 +108,6 @@ ENDFOREACH(header)
SET
(
${
PROJECT_NAME
}
_SOURCES
src/exception.cpp
src/eigenpy.cpp
src/details.cpp
src/angle-axis.cpp
src/quaternion.cpp
)
...
...
This diff is collapsed.
Click to expand it.
src/details.cpp
deleted
100644 → 0
+
0
−
22
View file @
1065425e
/*
* Copyright (c) 2015 LAAS-CNRS
*
* This file is part of eigenpy.
* eigenpy is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
* eigenpy is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details. You should
* have received a copy of the GNU Lesser General Public License along
* with eigenpy. If not, see <http://www.gnu.org/licenses/>.
*/
#include
"eigenpy/details.hpp"
namespace
eigenpy
{
PyMatrixType
pyMatrixType
=
PyMatrixType
();
}
// namespace eigenpy
This diff is collapsed.
Click to expand it.
src/details.hpp
+
21
−
13
View file @
92f9eb14
...
...
@@ -35,31 +35,39 @@ namespace eigenpy
template
<
>
struct
NumpyEquivalentType
<
int
>
{
enum
{
type_code
=
NPY_INT
};};
template
<
>
struct
NumpyEquivalentType
<
float
>
{
enum
{
type_code
=
NPY_FLOAT
};};
namespace
bp
=
boost
::
python
;
struct
PyMatrixType
{
boost
::
python
::
object
pyMatrixType
;
boost
::
python
::
object
pyModule
;
PyMatrixType
()
static
PyMatrixType
&
getInstance
()
{
pyModule
=
boost
::
python
::
import
(
"numpy"
)
;
pyMatrixType
=
pyModule
.
attr
(
"matrix"
)
;
static
PyMatrixType
instance
;
return
instance
;
}
operator
boost
::
python
::
object
()
{
return
pyMatrixType
;
}
boost
::
python
::
object
make
(
PyArrayObject
*
pyArray
,
bool
copy
=
false
)
operator
bp
::
object
()
{
return
pyMatrixType
;
}
bp
::
object
make
(
PyArrayObject
*
pyArray
,
bool
copy
=
false
)
{
return
make
((
PyObject
*
)
pyArray
,
copy
);
}
b
oost
::
python
::
object
make
(
PyObject
*
pyObj
,
bool
copy
=
false
)
b
p
::
object
make
(
PyObject
*
pyObj
,
bool
copy
=
false
)
{
boost
::
python
::
object
m
=
pyMatrixType
(
boost
::
python
::
object
(
boost
::
python
::
handle
<>
(
pyObj
)),
boost
::
python
::
object
(),
copy
);
=
pyMatrixType
(
bp
::
object
(
bp
::
handle
<>
(
pyObj
)),
bp
::
object
(),
copy
);
Py_INCREF
(
m
.
ptr
());
return
m
;
}
};
extern
PyMatrixType
pyMatrixType
;
protected
:
PyMatrixType
()
{
pyModule
=
boost
::
python
::
import
(
"numpy"
);
pyMatrixType
=
pyModule
.
attr
(
"matrix"
);
}
bp
::
object
pyMatrixType
;
bp
::
object
pyModule
;
};
/* --- TO PYTHON -------------------------------------------------------------- */
template
<
typename
MatType
,
typename
EquivalentEigenType
>
...
...
@@ -78,7 +86,7 @@ namespace eigenpy
MapNumpy
<
EquivalentEigenType
>::
map
(
pyArray
)
=
mat
;
return
p
yMatrixType
.
make
(
pyArray
).
ptr
();
return
P
yMatrixType
::
getInstance
()
.
make
(
pyArray
).
ptr
();
}
};
...
...
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