BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
constexpr_if.h
Go to the documentation of this file.
1 /*
2  * ConstexprIf.h
3  *
4  * Created on: Jun 30, 2019
5  * Author: joseph
6  */
7 
8 #ifndef BLACKCAT_CONSTEXPRIF_H_
9 #define BLACKCAT_CONSTEXPRIF_H_
10 
11 #include "constexpr_int.h"
12 #include "get.h"
13 #include "bind.h"
14 
15 namespace bc {
16 namespace traits {
17 
18 //-------------------------- constexpr if -----------------------//
35 template<bool cond, class f1, class f2>
36 auto constexpr_ternary(f1 true_path, f2 false_path) {
37  return bc::traits::get<int(!cond)>(true_path, false_path)();
38 }
39 
40 template<bool Bool,class Function>
41 auto constexpr_if(Function function) {
42  return constexpr_ternary<Bool>(function, [](){});
43 }
44 
45 template<bool Bool, class F1, class F2>
46 auto constexpr_if(F1 f1, F2 f2) {
47  return constexpr_ternary<Bool>(f1, f2);
48 }
49 
50 template<bool Bool, class Function>
51 auto constexpr_else_if(Function function) {
52  return [=]() { return constexpr_if<Bool>(function); };
53 }
54 
55 template<bool Bool, class F1, class F2>
56 auto constexpr_else_if(F1 f1, F2 f2) {
57  return [=]() { return constexpr_ternary<Bool>(f1, f2); };
58 }
59 
60 template<class Function>
61 auto constexpr_else(Function function) {
62  return bc::traits::bind(function);
63 }
64 
65 }
66 }
67 
68 #endif /* CONSTEXPRIF_H_ */
Bind< Function, Args &&... > bind(Function function, Args &&... args)
Definition: bind.h:105
auto constexpr_ternary(f1 true_path, f2 false_path)
C++ 11/14 version of constexpr if.
Definition: constexpr_if.h:36
auto constexpr_else(Function function)
Definition: constexpr_if.h:61
auto constexpr_else_if(Function function)
Definition: constexpr_if.h:51
auto constexpr_if(Function function)
Definition: constexpr_if.h:41
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22