| 116 | } // namespace |
| 117 | |
| 118 | int main() { |
| 119 | try { |
| 120 | test_guidance(); |
| 121 | test_velocity_and_steps(); |
| 122 | test_masks(); |
| 123 | } catch (const std::exception & error) { |
| 124 | std::cerr << error.what() << '\n'; |
| 125 | return 1; |
| 126 | } |
| 127 | std::cout << "diffusion_math_test passed\n"; |
| 128 | return 0; |
| 129 | } |
nothing calls this directly
no test coverage detected