blob: 296350d082fdf7d3e989ae56afe0d01c54786a11 [file] [log] [blame]
Austin Schuh189376f2018-12-20 22:11:15 +11001// This file is part of Eigen, a lightweight C++ template library
2// for linear algebra.
3//
4// Copyright (C) 2015 Gael Guennebaud <gael.guennebaud@inria.fr>
5//
6// This Source Code Form is subject to the terms of the Mozilla
7// Public License v. 2.0. If a copy of the MPL was not distributed
8// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
9
Austin Schuhc55b0172022-02-20 17:52:35 -080010#ifndef EIGEN_MPL2_ONLY
Austin Schuh189376f2018-12-20 22:11:15 +110011#define EIGEN_MPL2_ONLY
Austin Schuhc55b0172022-02-20 17:52:35 -080012#endif
Austin Schuh189376f2018-12-20 22:11:15 +110013#include <Eigen/Dense>
14#include <Eigen/SparseCore>
15#include <Eigen/SparseLU>
16#include <Eigen/SparseQR>
17#include <Eigen/Sparse>
18#include <Eigen/IterativeLinearSolvers>
19#include <Eigen/Eigen>
20
21int main()
22{
23 return 0;
24}