Given the following code:
#include <iostream>
template <int X, int Y>
int foo(int v) // dummy parameter
{
return v * X + v / Y; // dummy calculation
}
int main()
{
// x, y, v are only known at runtime
int x = 4;
int y = 6;
int v = 3;
int result = 0;
if (x == 1 && y == 1) result = foo<1, 1>(v);
if (x == 1 && y == 3) result = foo<1, 3>(v);
if (x == 5 && y == 1) result = foo<5, 1>(v);
if (x == 4 && y == 6) result = foo<4, 6>(v);
if (x == 8 && y == 4) result = foo<8, 4>(v);
// ...
std::cout << result << std::endl;
}
I would like to instantiate foo
for different combinations of X
and Y
as shown in the if
cascade in main
.
This however can become quite ugly (long). Is there a possibility using C++14 (e.g. by using the preprocessor) to generate this code given a list of needed combination?
Generating the code and instances for known pairs of x and y, is easy if that is just what you want.
Added an "else" as there should be not be two lines that are the same. And a "throw" at the end to finish the else-cascade.