You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
279 B

  1. #ifndef M10A_H
  2. #define M10A_H
  3. #include "quantum.h"
  4. #define M10A( \
  5. k00, k01, k02, \
  6. k10, k11, k12, \
  7. k20, k21, k22, \
  8. k30, k31, k32 \
  9. ) \
  10. { \
  11. { k00, k01, k02 }, \
  12. { k10, k11, k12 }, \
  13. { k20, k21, k22 }, \
  14. { k30, k31, k32 } \
  15. }
  16. #endif