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.
26 lines
428 B
26 lines
428 B
2 years ago
|
//
|
||
|
// Created by cflin on 4/20/23.
|
||
|
//
|
||
|
|
||
|
#ifndef TOP3D_UTIL_H
|
||
|
#define TOP3D_UTIL_H
|
||
|
#include <unsupported/Eigen/CXX11/Tensor>
|
||
|
#include <Eigen/Eigen>
|
||
|
#include "TensorWrapper.h"
|
||
|
namespace top {
|
||
|
using Tensor3d=TensorWrapper<double,3>;
|
||
|
using Tensor3i=TensorWrapper<int,3>;
|
||
|
using Eigen::all;
|
||
|
using SpMat=Eigen::SparseMatrix<double>;
|
||
|
template<typename Tp>
|
||
|
|
||
|
|
||
|
class Util {
|
||
|
|
||
|
};
|
||
|
|
||
|
} // top
|
||
|
|
||
|
|
||
|
#endif //TOP3D_UTIL_H
|