https://github.com/HTDerekLiu/surface_multigrid_code
Raw File
Tip revision: a827578755d864df68b103c71048c7da7a00ce59 authored by HTDerekLiu on 09 August 2021, 18:36:04 UTC
add a faster example
Tip revision: a827578
single_collapse_data.h
#ifndef SINGEL_COLLAPSE_DATA_H
#define SINGEL_COLLAPSE_DATA_H

#include <vector>
#include <Eigen/Core>

struct single_collapse_data
{
  Eigen::VectorXi b, FIdx_pre, FIdx_post;
  Eigen::VectorXi subsetVIdx;
  Eigen::MatrixXd UV_pre, UV_post, V_pre, V_post;
  Eigen::MatrixXi FUV_pre, FUV_post;  
  std::vector<int> Nsv, Ndv;
};

#endif
back to top