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
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