https://github.com/HTDerekLiu/surface_multigrid_code
Revision db5c7fa56b977d3f1ac0ac11ed875f75229f2d27 authored by eriszhang on 08 August 2021, 03:27:39 UTC, committed by eriszhang on 08 August 2021, 03:27:39 UTC
1 parent d366192
Raw File
Tip revision: db5c7fa56b977d3f1ac0ac11ed875f75229f2d27 authored by eriszhang on 08 August 2021, 03:27:39 UTC
add
Tip revision: db5c7fa
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