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
always_try_never_care.h
#ifndef ALWAYS_TRY_NEVER_CARE_H
#define ALWAYS_TRY_NEVER_CARE_H
#include "decimate_func_types.h"
  // Outputs:
  //   always_try  function that always returns true
  //   never_care  fuction that is always a no-op
  void always_try_never_care(
    decimate_pre_collapse_func  & always_try,
    decimate_post_collapse_func & never_care);

#endif 

back to top