Skip to content
Snippets Groups Projects
Select Git revision
  • update-conda-setup-scripts
  • master default
  • validation
  • dsl
  • tvb-rest
  • tvb-multiscale-cosim
  • gradients2
  • gradients
  • run-fs
  • tvb-rest-security
  • dynamic-non-state-vars
  • prep-sphere
  • fix_axis_range_reset
  • stable_1_5_10
  • 1.5.10
15 results

HowToProfileTVB.txt

Blame
  • result_compare.hpp 341 B
    #ifndef RESULT_COMPARE_HPP
    #define RESULT_COMPARE_HPP
    
    template<typename func_type, typename compare_func_type, typename ... args_t>
    bool compare_results(func_type test_func, compare_func_type compare_func, args_t ... args)
    {
        test_func(args...);
        return compare_func(args...);
    }
    
    #endif /* end of include guard: RESULT_COMPARE_HPP */