Sign in
third-party-mirror
/
eigen
/
941ca8d83f776b9a07153d3abef2877907aa0555
/
.
/
lapack
/
experimental
/
ilaver.cpp
blob: ddab5ddcbf40b0f7c54ba4392a1f9c5adffe704c [
file
] [
log
] [
blame
]
#include
"../../Eigen/Core"
extern
"C"
{
void
ilaver_
(
int
*
major
,
int
*
minor
,
int
*
patch
);
}
void
ilaver_
(
int
*
major
,
int
*
minor
,
int
*
patch
)
{
*
major
=
EIGEN_WORLD_VERSION
;
*
minor
=
EIGEN_MAJOR_VERSION
;
*
patch
=
EIGEN_MINOR_VERSION
;
}