25 lines
708 B
C
25 lines
708 B
C
#ifndef BACKEND_H
|
|
#define BACKEND_H
|
|
|
|
|
|
#include "Fastor/backend/adjoint.h"
|
|
#include "Fastor/backend/cofactor.h"
|
|
#include "Fastor/backend/cyclic_0.h"
|
|
#include "Fastor/backend/determinant.h"
|
|
#include "Fastor/backend/doublecontract.h"
|
|
#include "Fastor/backend/dyadic.h"
|
|
#include "Fastor/backend/inner.h"
|
|
#include "Fastor/backend/inverse.h"
|
|
#include "Fastor/backend/lufact.h"
|
|
#include "Fastor/backend/lut_inverse.h"
|
|
#include "Fastor/backend/matmul/matmul.h"
|
|
#include "Fastor/backend/matmul/tmatmul.h"
|
|
#include "Fastor/backend/norm.h"
|
|
#include "Fastor/backend/outer.h"
|
|
#include "Fastor/backend/tensor_cross.h"
|
|
#include "Fastor/backend/trace.h"
|
|
#include "Fastor/backend/transpose/transpose.h"
|
|
|
|
#endif // BACKEND_H
|
|
|