You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
865 B
27 lines
865 B
9 years ago
|
/*
|
||
|
* Copyright (c) 2016 - present Facebook, Inc.
|
||
|
* All rights reserved.
|
||
|
*
|
||
|
* This source code is licensed under the BSD style license found in the
|
||
|
* LICENSE file in the root directory of this source tree. An additional grant
|
||
|
* of patent rights can be found in the PATENTS file in the same directory.
|
||
|
*/
|
||
|
|
||
|
// div(a,b,c,d) = 1/a + 1/b + 1/c + 1/d;
|
||
|
int div(int d) { return 1 / d; }
|
||
|
template <typename... Args>
|
||
|
int div(int v, Args... args) {
|
||
|
return 1 / v + div(args...);
|
||
|
}
|
||
|
|
||
|
int div0_1arg() { return div(0); }
|
||
|
|
||
|
int div0_3args1() { return div(0, 2, 3); }
|
||
|
int div0_3args2() { return div(1, 0, 3); }
|
||
|
int div0_3args3() { return div(1, 2, 0); }
|
||
|
int div0_3args4() { return div(1, 0, 0); }
|
||
|
int div0_10args() { return div(1, 2, 3, 4, 5, 6, 7, 0, 9, 10); }
|
||
|
|
||
|
int no_div0_3_args() { return div(1, 2, 3); }
|
||
|
int no_div0_10args() { return div(1, 2, 3, 4, 5, 6, 7, 8, 9, 10); }
|