Home | History | Annotate | Download | only in Eigen2Support
      1 // This file is part of Eigen, a lightweight C++ template library
      2 // for linear algebra.
      3 //
      4 // Copyright (C) 2011 Benoit Jacob <jacob.benoit.1 (at) gmail.com>
      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 
     10 #ifndef EIGEN2_MACROS_H
     11 #define EIGEN2_MACROS_H
     12 
     13 #define ei_assert eigen_assert
     14 #define ei_internal_assert eigen_internal_assert
     15 
     16 #define EIGEN_ALIGN_128 EIGEN_ALIGN16
     17 
     18 #define EIGEN_ARCH_WANTS_ALIGNMENT EIGEN_ALIGN_STATICALLY
     19 
     20 #endif // EIGEN2_MACROS_H
     21