keyword stringclasses 7
values | repo_name stringlengths 8 98 | file_path stringlengths 4 244 | file_extension stringclasses 29
values | file_size int64 0 84.1M | line_count int64 0 1.6M | content stringlengths 1 84.1M ⌀ | language stringclasses 14
values |
|---|---|---|---|---|---|---|---|
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/llt_int.cpp | .cpp | 248 | 15 | #include "../Eigen/Cholesky"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define SCALAR int
#else
#define SCALAR float
#endif
using namespace Eigen;
int main()
{
LLT<Matrix<SCALAR,Dynamic,Dynamic> > llt(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/ref_4.cpp | .cpp | 227 | 16 | #include "../Eigen/Core"
using namespace Eigen;
void call_ref(Ref<MatrixXf,0,OuterStride<> > a) {}
int main()
{
MatrixXf A(10,10);
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
call_ref(A.transpose());
#else
call_ref(A);
#endif
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/const_qualified_transpose_method_retval.cpp | .cpp | 241 | 16 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(CV_QUALIFIER Matrix3d &m){
Transpose<Matrix3d> b(m.transpose());
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/selfadjointview_on_const_type_actually_const.cpp | .cpp | 266 | 17 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(){
MatrixXf m;
SelfAdjointView<CV_QUALIFIER MatrixXf,Upper>(m).coeffRef(0, 0) = 1.0f;
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/block_on_const_type_actually_const_1.cpp | .cpp | 262 | 17 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(){
MatrixXf m;
Block<CV_QUALIFIER MatrixXf, 3, 3>(m, 0, 0).coeffRef(0, 0) = 1.0f;
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/map_on_const_type_actually_const_1.cpp | .cpp | 241 | 16 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(float *ptr){
Map<CV_QUALIFIER Vector3f>(ptr).coeffRef(0) = 1.0f;
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/ldlt_int.cpp | .cpp | 250 | 15 | #include "../Eigen/Cholesky"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define SCALAR int
#else
#define SCALAR float
#endif
using namespace Eigen;
int main()
{
LDLT<Matrix<SCALAR,Dynamic,Dynamic> > ldlt(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/swap_2.cpp | .cpp | 210 | 14 | #include "../Eigen/Core"
using namespace Eigen;
int main()
{
VectorXf a(10), b(10);
VectorXf const &ac(a);
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
b.swap(ac);
#else
b.swap(ac.const_cast_derived());
#endif
} | C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/sparse_ref_4.cpp | .cpp | 235 | 16 | #include "../Eigen/Sparse"
using namespace Eigen;
void call_ref(Ref<SparseMatrix<float> > a) {}
int main()
{
SparseMatrix<float> A(10,10);
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
call_ref(A.transpose());
#else
call_ref(A);
#endif
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/partialpivlu_int.cpp | .cpp | 250 | 15 | #include "../Eigen/LU"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define SCALAR int
#else
#define SCALAR float
#endif
using namespace Eigen;
int main()
{
PartialPivLU<Matrix<SCALAR,Dynamic,Dynamic> > lu(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/ternary_1.cpp | .cpp | 213 | 14 | #include "../Eigen/Core"
using namespace Eigen;
int main(int argc,char **)
{
VectorXf a(10), b(10);
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
b = argc>1 ? 2*a : -a;
#else
b = argc>1 ? 2*a : VectorXf(-a);
#endif
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/block_on_const_type_actually_const_0.cpp | .cpp | 262 | 17 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(){
Matrix3f m;
Block<CV_QUALIFIER Matrix3f>(m, 0, 0, 3, 3).coeffRef(0, 0) = 1.0f;
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/block_nonconst_ctor_on_const_xpr_0.cpp | .cpp | 233 | 16 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(CV_QUALIFIER Matrix3d &m){
Block<Matrix3d,3,3> b(m,0,0);
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/eigensolver_int.cpp | .cpp | 259 | 15 | #include "../Eigen/Eigenvalues"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define SCALAR int
#else
#define SCALAR float
#endif
using namespace Eigen;
int main()
{
EigenSolver<Matrix<SCALAR,Dynamic,Dynamic> > eig(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/triangularview_nonconst_ctor_on_const_xpr.cpp | .cpp | 238 | 16 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(CV_QUALIFIER Matrix3d &m){
TriangularView<Matrix3d,Upper> t(m);
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/fullpivlu_int.cpp | .cpp | 247 | 15 | #include "../Eigen/LU"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define SCALAR int
#else
#define SCALAR float
#endif
using namespace Eigen;
int main()
{
FullPivLU<Matrix<SCALAR,Dynamic,Dynamic> > lu(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/colpivqr_int.cpp | .cpp | 257 | 15 | #include "../Eigen/QR"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define SCALAR int
#else
#define SCALAR float
#endif
using namespace Eigen;
int main()
{
ColPivHouseholderQR<Matrix<SCALAR,Dynamic,Dynamic> > qr(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/sparse_ref_3.cpp | .cpp | 271 | 16 | #include "../Eigen/Sparse"
using namespace Eigen;
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
void call_ref(Ref<SparseMatrix<float> > a) { }
#else
void call_ref(const Ref<const SparseMatrix<float> > &a) { }
#endif
int main()
{
SparseMatrix<float> a(10,10);
call_ref(a+a);
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/map_nonconst_ctor_on_const_ptr_1.cpp | .cpp | 246 | 16 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(CV_QUALIFIER float *ptr, DenseIndex size){
Map<ArrayXf> m(ptr, size);
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/const_qualified_block_method_retval_0.cpp | .cpp | 245 | 16 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(CV_QUALIFIER Matrix3d &m){
Block<Matrix3d,3,3> b(m.block<3,3>(0,0));
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/failtest_sanity_check.cpp | .cpp | 156 | 6 | #ifdef EIGEN_SHOULD_FAIL_TO_BUILD
This is just some text that won't compile as a C++ file, as a basic sanity check for failtest.
#else
int main() {}
#endif
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/bdcsvd_int.cpp | .cpp | 245 | 15 | #include "../Eigen/SVD"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define SCALAR int
#else
#define SCALAR float
#endif
using namespace Eigen;
int main()
{
BDCSVD<Matrix<SCALAR,Dynamic,Dynamic> > qr(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/transpose_on_const_type_actually_const.cpp | .cpp | 254 | 17 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(){
MatrixXf m;
Transpose<CV_QUALIFIER MatrixXf>(m).coeffRef(0, 0) = 1.0f;
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/transpose_nonconst_ctor_on_const_xpr.cpp | .cpp | 229 | 16 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(CV_QUALIFIER Matrix3d &m){
Transpose<Matrix3d> t(m);
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/const_qualified_diagonal_method_retval.cpp | .cpp | 239 | 16 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(CV_QUALIFIER Matrix3d &m){
Diagonal<Matrix3d> b(m.diagonal());
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/triangularview_on_const_type_actually_const.cpp | .cpp | 265 | 17 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(){
MatrixXf m;
TriangularView<CV_QUALIFIER MatrixXf,Upper>(m).coeffRef(0, 0) = 1.0f;
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/block_nonconst_ctor_on_const_xpr_1.cpp | .cpp | 233 | 16 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(CV_QUALIFIER Matrix3d &m){
Block<Matrix3d> b(m,0,0,3,3);
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/ref_3.cpp | .cpp | 231 | 16 | #include "../Eigen/Core"
using namespace Eigen;
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
void call_ref(Ref<VectorXf> a) { }
#else
void call_ref(const Ref<const VectorXf> &a) { }
#endif
int main()
{
VectorXf a(10);
call_ref(a+a);
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/diagonal_on_const_type_actually_const.cpp | .cpp | 250 | 17 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(){
MatrixXf m;
Diagonal<CV_QUALIFIER MatrixXf>(m).coeffRef(0) = 1.0f;
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/sparse_ref_2.cpp | .cpp | 238 | 16 | #include "../Eigen/Sparse"
using namespace Eigen;
void call_ref(Ref<SparseMatrix<float> > a) { }
int main()
{
SparseMatrix<float> A(10,10);
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
call_ref(A.row(3));
#else
call_ref(A.col(3));
#endif
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/cwiseunaryview_nonconst_ctor_on_const_xpr.cpp | .cpp | 271 | 16 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(CV_QUALIFIER Matrix3d &m){
CwiseUnaryView<internal::scalar_real_ref_op<double>,Matrix3d> t(m);
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/ref_5.cpp | .cpp | 238 | 17 | #include "../Eigen/Core"
using namespace Eigen;
void call_ref(Ref<VectorXf> a) { }
int main()
{
VectorXf a(10);
DenseBase<VectorXf> &ac(a);
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
call_ref(ac);
#else
call_ref(ac.derived());
#endif
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/map_nonconst_ctor_on_const_ptr_3.cpp | .cpp | 314 | 16 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(CV_QUALIFIER float *ptr, DenseIndex rows, DenseIndex cols){
Map<MatrixXf, Aligned, InnerStride<2> > m(ptr, rows, cols, InnerStride<2>());
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/map_on_const_type_actually_const_0.cpp | .cpp | 249 | 16 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(float *ptr){
Map<CV_QUALIFIER MatrixXf>(ptr, 1, 1).coeffRef(0,0) = 1.0f;
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/sparse_ref_5.cpp | .cpp | 285 | 17 | #include "../Eigen/Sparse"
using namespace Eigen;
void call_ref(Ref<SparseMatrix<float> > a) { }
int main()
{
SparseMatrix<float> a(10,10);
SparseMatrixBase<SparseMatrix<float> > &ac(a);
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
call_ref(ac);
#else
call_ref(ac.derived());
#endif
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/cwiseunaryview_on_const_type_actually_const.cpp | .cpp | 296 | 17 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(){
MatrixXf m;
CwiseUnaryView<internal::scalar_real_ref_op<double>,CV_QUALIFIER MatrixXf>(m).coeffRef(0, 0) = 1.0f;
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/map_nonconst_ctor_on_const_ptr_2.cpp | .cpp | 270 | 16 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(CV_QUALIFIER float *ptr, DenseIndex rows, DenseIndex cols){
Map<MatrixXf> m(ptr, rows, cols);
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/sparse_ref_1.cpp | .cpp | 302 | 19 | #include "../Eigen/Sparse"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void call_ref(Ref<SparseMatrix<float> > a) { }
int main()
{
SparseMatrix<float> a(10,10);
CV_QUALIFIER SparseMatrix<float>& ac(a);
call_ref(ac);
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/qr_int.cpp | .cpp | 251 | 15 | #include "../Eigen/QR"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define SCALAR int
#else
#define SCALAR float
#endif
using namespace Eigen;
int main()
{
HouseholderQR<Matrix<SCALAR,Dynamic,Dynamic> > qr(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/swap_1.cpp | .cpp | 217 | 15 | #include "../Eigen/Core"
using namespace Eigen;
int main()
{
VectorXf a(10), b(10);
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
const DenseBase<VectorXf> &ac(a);
#else
DenseBase<VectorXf> &ac(a);
#endif
b.swap(ac);
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/block_nonconst_ctor_on_const_xpr_2.cpp | .cpp | 261 | 17 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(CV_QUALIFIER Matrix3d &m){
// row/column constructor
Block<Matrix3d,3,1> b(m,0);
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/selfadjointview_nonconst_ctor_on_const_xpr.cpp | .cpp | 241 | 16 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(CV_QUALIFIER Matrix3d &m){
SelfAdjointView<Matrix3d,Upper> t(m);
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/eigensolver_cplx.cpp | .cpp | 276 | 15 | #include "../Eigen/Eigenvalues"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define SCALAR std::complex<double>
#else
#define SCALAR float
#endif
using namespace Eigen;
int main()
{
EigenSolver<Matrix<SCALAR,Dynamic,Dynamic> > eig(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/jacobisvd_int.cpp | .cpp | 248 | 15 | #include "../Eigen/SVD"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define SCALAR int
#else
#define SCALAR float
#endif
using namespace Eigen;
int main()
{
JacobiSVD<Matrix<SCALAR,Dynamic,Dynamic> > qr(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/ternary_2.cpp | .cpp | 225 | 14 | #include "../Eigen/Core"
using namespace Eigen;
int main(int argc,char **)
{
VectorXf a(10), b(10);
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
b = argc>1 ? 2*a : a+a;
#else
b = argc>1 ? VectorXf(2*a) : VectorXf(a+a);
#endif
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/sparse_storage_mismatch.cpp | .cpp | 290 | 17 | #include "../Eigen/Sparse"
using namespace Eigen;
typedef SparseMatrix<double,ColMajor> Mat1;
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
typedef SparseMatrix<double,RowMajor> Mat2;
#else
typedef SparseMatrix<double,ColMajor> Mat2;
#endif
int main()
{
Mat1 a(10,10);
Mat2 b(10,10);
a += b;
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/ref_2.cpp | .cpp | 213 | 16 | #include "../Eigen/Core"
using namespace Eigen;
void call_ref(Ref<VectorXf> a) { }
int main()
{
MatrixXf A(10,10);
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
call_ref(A.row(3));
#else
call_ref(A.col(3));
#endif
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/map_nonconst_ctor_on_const_ptr_0.cpp | .cpp | 224 | 16 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(CV_QUALIFIER float *ptr){
Map<Matrix3f> m(ptr);
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/map_nonconst_ctor_on_const_ptr_4.cpp | .cpp | 321 | 16 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER
#else
#define CV_QUALIFIER const
#endif
using namespace Eigen;
void foo(const float *ptr, DenseIndex rows, DenseIndex cols){
Map<CV_QUALIFIER MatrixXf, Unaligned, OuterStride<> > m(ptr, rows, cols, OuterStride<>(2));
}
int main() {}... | C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/diagonal_nonconst_ctor_on_const_xpr.cpp | .cpp | 228 | 16 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(CV_QUALIFIER Matrix3d &m){
Diagonal<Matrix3d> d(m);
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/fullpivqr_int.cpp | .cpp | 258 | 15 | #include "../Eigen/QR"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define SCALAR int
#else
#define SCALAR float
#endif
using namespace Eigen;
int main()
{
FullPivHouseholderQR<Matrix<SCALAR,Dynamic,Dynamic> > qr(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/const_qualified_block_method_retval_1.cpp | .cpp | 240 | 16 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(CV_QUALIFIER Matrix3d &m){
Block<Matrix3d> b(m.block(0,0,3,3));
}
int main() {}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/failtest/ref_1.cpp | .cpp | 263 | 19 | #include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void call_ref(Ref<VectorXf> a) { }
int main()
{
VectorXf a(10);
CV_QUALIFIER VectorXf& ac(a);
call_ref(ac);
}
| C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/debug/gdb/printers.py | .py | 6,547 | 215 | # -*- coding: utf-8 -*-
# This file is part of Eigen, a lightweight C++ template library
# for linear algebra.
#
# Copyright (C) 2009 Benjamin Schindler <bschindler@inf.ethz.ch>
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
... | Python |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/debug/gdb/__init__.py | .py | 22 | 2 | # Intentionally empty
| Python |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/ilaslc.f | .f | 2,941 | 119 | *> \brief \b ILASLC
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download ILASLC + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/ilasl... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/zladiv.f | .f | 2,364 | 98 | *> \brief \b ZLADIV
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download ZLADIV + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/zladi... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/zlacgv.f | .f | 2,839 | 117 | *> \brief \b ZLACGV
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download ZLACGV + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/zlacg... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/dlarf.f | .f | 6,167 | 228 | *> \brief \b DLARF
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download DLARF + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dlarf.f... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/complex_single.cpp | .cpp | 577 | 19 | // This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2009-2014 Gael Guennebaud <gael.guennebaud@inria.fr>
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You c... | C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/dlarfg.f | .f | 4,946 | 197 | *> \brief \b DLARFG
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download DLARFG + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dlarf... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/ilazlr.f | .f | 3,010 | 122 | *> \brief \b ILAZLR
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download ILAZLR + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/ilazl... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/clarfb.f | .f | 23,424 | 772 | *> \brief \b CLARFB
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download CLARFB + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/clarf... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/dlamch.f | .f | 5,259 | 190 | *> \brief \b DLAMCH
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
* Definition:
* ===========
*
* DOUBLE PRECISION FUNCTION DLAMCH( CMACH )
*
*
*> \par Purpose:
* =============
*>
*> \verbatim
*>
*> DLAMCH dete... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/single.cpp | .cpp | 561 | 19 | // This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2009-2014 Gael Guennebaud <gael.guennebaud@inria.fr>
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You c... | C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/zlarft.f | .f | 10,453 | 328 | *> \brief \b ZLARFT
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download ZLARFT + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/zlarf... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/second_NONE.f | .f | 1,258 | 53 | *> \brief \b SECOND returns nothing
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
* Definition:
* ===========
*
* REAL FUNCTION SECOND( )
*
*
*> \par Purpose:
* =============
*>
*> \verbatim
*>
*> SECOND retur... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/slapy3.f | .f | 2,701 | 112 | *> \brief \b SLAPY3
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download SLAPY3 + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/slapy... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/eigenvalues.cpp | .cpp | 1,826 | 63 | // This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2011 Gael Guennebaud <gael.guennebaud@inria.fr>
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You can ob... | C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/ilaclr.f | .f | 2,997 | 122 | *> \brief \b ILACLR
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download ILACLR + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/ilacl... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/sladiv.f | .f | 2,897 | 129 | *> \brief \b SLADIV
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download SLADIV + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/sladi... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/slarfg.f | .f | 4,908 | 197 | *> \brief \b SLARFG
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download SLARFG + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/slarf... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/dlarfb.f | .f | 22,749 | 763 | *> \brief \b DLARFB
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download DLARFB + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dlarf... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/lapack_common.h | .h | 877 | 30 | // This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2010-2014 Gael Guennebaud <gael.guennebaud@inria.fr>
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You c... | Unknown |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/iladlc.f | .f | 2,952 | 119 | *> \brief \b ILADLC
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download ILADLC + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/iladl... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/ilaclc.f | .f | 2,957 | 119 | *> \brief \b ILACLC
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download ILACLC + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/ilacl... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/slarft.f | .f | 10,183 | 327 | *> \brief \b SLARFT
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download SLARFT + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/slarf... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/cholesky.cpp | .cpp | 2,205 | 73 | // This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2010-2011 Gael Guennebaud <gael.guennebaud@inria.fr>
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You c... | C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/dlapy3.f | .f | 2,737 | 112 | *> \brief \b DLAPY3
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download DLAPY3 + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dlapy... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/clarfg.f | .f | 5,344 | 204 | *> \brief \b CLARFG
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download CLARFG + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/clarf... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/complex_double.cpp | .cpp | 578 | 19 | // This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2009-2014 Gael Guennebaud <gael.guennebaud@inria.fr>
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You c... | C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/iladlr.f | .f | 3,000 | 122 | *> \brief \b ILADLR
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download ILADLR + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/iladl... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/double.cpp | .cpp | 562 | 19 | // This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2009-2014 Gael Guennebaud <gael.guennebaud@inria.fr>
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You c... | C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/ilaslr.f | .f | 2,988 | 122 | *> \brief \b ILASLR
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download ILASLR + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/ilasl... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/cladiv.f | .f | 2,340 | 98 | *> \brief \b CLADIV
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download CLADIV + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/cladi... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/dlarft.f | .f | 10,222 | 327 | *> \brief \b DLARFT
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download DLARFT + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dlarf... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/dlapy2.f | .f | 2,514 | 105 | *> \brief \b DLAPY2
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download DLAPY2 + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dlapy... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/slapy2.f | .f | 2,490 | 105 | *> \brief \b SLAPY2
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download SLAPY2 + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/slapy... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/ilazlc.f | .f | 2,962 | 119 | *> \brief \b ILAZLC
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download ILAZLC + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/ilazl... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/slarf.f | .f | 6,117 | 228 | *> \brief \b SLARF
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download SLARF + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/slarf.f... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/slamch.f | .f | 5,261 | 193 | *> \brief \b SLAMCH
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
* Definition:
* ===========
*
* REAL FUNCTION SLAMCH( CMACH )
*
* .. Scalar Arguments ..
* CHARACTER CMACH
* ..
*... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/slarfb.f | .f | 22,727 | 764 | *> \brief \b SLARFB
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download SLARFB + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/slarf... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/zlarfb.f | .f | 23,498 | 775 | *> \brief \b ZLARFB
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download ZLARFB + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/zlarf... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/dsecnd_NONE.f | .f | 1,282 | 53 | *> \brief \b DSECND returns nothing
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
* Definition:
* ===========
*
* DOUBLE PRECISION FUNCTION DSECND( )
*
*
*> \par Purpose:
* =============
*>
*> \verbatim
*>
*> ... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/clarft.f | .f | 10,450 | 329 | *> \brief \b CLARFT
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download CLARFT + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/clarf... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/zlarfg.f | .f | 5,359 | 204 | *> \brief \b ZLARFG
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download ZLARFG + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/zlarf... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/zlarf.f | .f | 6,278 | 233 | *> \brief \b ZLARF
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download ZLARF + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/zlarf.f... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/clacgv.f | .f | 2,831 | 117 | *> \brief \b CLACGV
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download CLACGV + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/clacg... | Fortran |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/svd.cpp | .cpp | 4,891 | 139 | // This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2014 Gael Guennebaud <gael.guennebaud@inria.fr>
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You can ob... | C++ |
2D | JaeHyunLee94/mpm2d | external/eigen-3.3.9/lapack/lu.cpp | .cpp | 2,655 | 90 | // This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2010-2011 Gael Guennebaud <gael.guennebaud@inria.fr>
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You c... | C++ |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.